blob: 2960a5eaf36d174e9e6afdce2be2d1d6aa7f5034 (
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
|
[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"
clap = { version = "4.5.60", features = ["derive"] }
[dev-dependencies]
tokio-test = "0.4"
|