diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8f4f54d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "speakez" +version = "0.1.0" +edition = "2024" + +[[bin]] +name = "speakez" +path = "src/main.rs" + +[lib] +name = "irc_client" +path = "src/lib.rs" + +[dependencies] +tokio = { version = "1", features = ["full"] } +tokio-util = { version = "0.7", features = ["codec"] } +bytes = "1" +futures = "0.3" +thiserror = "1" +tracing = "0.1" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } +ratatui = "0.29" +crossterm = "0.28" + +[dev-dependencies] +tokio-test = "0.4" |
