clemsbot/Cargo.toml

34 lines
1.0 KiB
TOML
Raw Normal View History

2021-08-18 05:45:44 +00:00
[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"
2022-03-18 19:36:48 +00:00
askama = { version = "0.11", features = ["with-warp"] }
askama_warp = "0.12"
cached = { version = "0.34", default-features = false }
2021-08-18 05:45:44 +00:00
chrono = "0.4"
2022-03-18 19:36:48 +00:00
cookie = { version = "0.16", features = ["percent-encode"] }
2021-08-18 05:45:44 +00:00
futures = "0.3"
irc = "0.15"
2022-03-18 19:36:48 +00:00
parking_lot = "0.12"
2021-08-18 05:45:44 +00:00
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"
2022-03-19 02:02:10 +00:00
tokio-tungstenite = { version = "0.17", features = ["rustls-tls-webpki-roots"] }
2022-03-18 19:36:48 +00:00
twitch_api2 = { version = "0.6.0-rc.3", features = ["twitch_oauth2", "client", "reqwest_client", "helix", "pubsub", "unsupported"] }
2021-08-18 05:45:44 +00:00
url = "2"
uuid = { version = "0.8", features = ["v4", "serde"] }
2021-08-18 05:45:44 +00:00
warp = "0.3"
[dependencies.tokio]
version = "1"
default-features = false
features = ["rt-multi-thread", "macros", "fs", "io-util", "signal"]