aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 8f4f54d9d75cc25c516c24dd9c16b8759ee3f63a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"