discord-cc-bridge/Cargo.toml

16 lines
575 B
TOML
Raw Normal View History

2023-10-28 15:16:14 +03:00
[package]
name = "discord-cc-bridge"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
parking_lot = "0.12.1"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.107"
2023-10-28 16:17:38 +03:00
serenity = { version = "0.11.7", default-features = false, features = ["builder", "cache", "chrono", "client", "gateway", "model", "http", "utils", "rustls_backend"] }
2023-10-28 15:16:14 +03:00
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = "0.20.1"