From ffb9c05de1c755dbddd8b67cca1d6023b213115f Mon Sep 17 00:00:00 2001 From: lancebord Date: Fri, 6 Mar 2026 18:09:52 -0500 Subject: initial commit --- Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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" -- cgit v1.2.3-59-g8ed1b