[package] name = "rusty_bot" version = "0.1.0" authors = ["oupson"] edition = "2018" default-run = "rusty_bot" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] music = ["serenity/voice", "songbird"] [dependencies] serenity = { version = "0.11", features = ["unstable_discord_api"] } toml = "0.5" serde = { version = "1.0", features = ["derive"] } reqwest = "0.11" rand = "0.8" lazy_static = "1.4" async-trait = "0.1" tokio = { version = "1.0", features = ["full"] } futures = "0.3" chrono = "0.4" serde_json = "1.0" log = "0.4" log4rs = "1.0" ctrlc = "3.1" songbird = { version = "0.3", features = ["driver", "builtin-queue", "yt-dlp"], optional = true } rusty-bot-database = { path = "../rusty-bot-database" } anyhow = "1.0.56"