clemsbot/Cargo.toml

31 lines
867 B
TOML

[package]
name = "clemsbot"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
askama = { version = "0.10", features = ["with-warp"] }
askama_warp = "0.11"
chrono = "0.4"
futures = "0.3"
irc = "0.15"
parking_lot = "0.11"
reqwest = "0.11"
rhai = { version = "1", features = ["sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = { version = "1", features = ["chrono"] }
toml = "0.5"
tokio-tungstenite = { version = "0.15", features = ["rustls-tls"] }
twitch_api2 = { version = "0.6.0-rc.2", features = ["twitch_oauth2", "client", "reqwest_client", "helix", "pubsub"] }
url = "2"
warp = "0.3"
[dependencies.tokio]
version = "1"
default-features = false
features = ["rt-multi-thread", "macros", "fs", "io-util", "signal"]