Winter/Cargo.toml

48 lines
1.0 KiB
TOML

[package]
name = "winter"
version = "0.1.0"
authors = ["Joshua Ashton <joshua@froggi.es>"]
edition = "2021"
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
reqwest = "0.11"
base64-stream = "1.2.7"
rand = "0.8.5"
[dependencies.songbird]
features = ["builtin-queue"]
git = "https://github.com/serenity-rs/songbird"
branch = "current"
[dependencies.symphonia]
version = "0.5.2"
features = ["aac", "mp3", "isomp4", "alac"]
[dependencies.serenity]
version = "0.12"
features = ["cache", "framework", "standard_framework", "voice", "http", "rustls_backend"]
[dependencies.tokio]
version = "1"
features = ["macros", "rt-multi-thread", "signal", "sync"]
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.meval]
version = "0.2"
[dependencies.uuid]
version = "1.3.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]