diff options
| author | 2026-03-06 18:09:52 -0500 | |
|---|---|---|
| committer | 2026-03-06 18:09:52 -0500 | |
| commit | ffb9c05de1c755dbddd8b67cca1d6023b213115f (patch) | |
| tree | fa8c375fc6489871b3539e15f39310dad99b3618 /Cargo.toml | |
initial commit
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" |
