dircord/Cargo.toml

24 lines
491 B
TOML
Raw Normal View History

2021-12-26 14:04:47 -06:00
[package]
name = "dircord"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-26 15:13:09 -06:00
anyhow = "1.0.52"
2021-12-27 11:24:31 -06:00
irc = "0.15"
2021-12-27 13:49:54 -06:00
toml = "0.5"
serde = "1.0"
regex = "1.5.4"
lazy_static = "1.4"
2021-12-26 15:13:09 -06:00
[dependencies.tokio]
version = "1.15.0"
features = ["full"]
[dependencies.serenity]
version = "0.10"
default-features = false
features = ["builder", "cache", "client", "gateway", "model", "utils", "native_tls_backend"]