17 lines
408 B
TOML
17 lines
408 B
TOML
[package]
|
|
name = "cri"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.31"
|
|
color-eyre = "0.6.2"
|
|
futures = "0.3.29"
|
|
iced = { version = "0.10.0", features = ["tokio"] }
|
|
irc = "0.15.0"
|
|
itertools = "0.12.0"
|
|
once_cell = "1.18.0"
|
|
regex = "1.10.2"
|
|
tokio = { version = "1.33.0", features = ["full"] }
|