aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 1357a9baad8c7e42d5614b250563988c73c81497 (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
28
29
[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 = { version = "0.28", features = ["event-stream"] }
unicode-width = "0.2.2"
clap = { version = "4.5.60", features = ["derive"] }
scanpw = "1.0.0"

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