aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 63a36169be524208549d0e2cf58b597a6a65b038 (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
27
[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.30"
crossterm = "0.28"
unicode-width = "0.2.2"

[dev-dependencies]
tokio-test = "0.4"