discord-rusty-bot/Cargo.toml

27 lines
684 B
TOML
Raw Normal View History

2020-08-24 15:11:06 +00:00
[package]
name = "rusty_bot"
version = "0.1.0"
authors = ["oupson"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
2021-03-17 22:26:43 +00:00
music = ["serenity/voice", "songbird"]
2020-08-24 15:11:06 +00:00
[dependencies]
2021-08-23 16:18:22 +00:00
serenity = { version = "0.10.9", features = ["unstable_discord_api"] }
2020-11-30 14:07:33 +00:00
toml = "0.5"
2020-08-24 15:11:06 +00:00
serde = { version = "1.0", features = ["derive"] }
2021-03-17 22:16:54 +00:00
reqwest = "0.11"
rand = "0.8"
2020-11-30 14:07:33 +00:00
lazy_static = "1.4"
async-trait = "0.1"
2021-03-17 22:26:43 +00:00
tokio = { version = "1.0", features = ["full"] }
2020-08-24 15:11:06 +00:00
futures = "0.3"
2020-11-30 14:07:33 +00:00
chrono = "0.4"
2020-08-27 15:05:28 +00:00
serde_json = "1.0"
log = "0.4"
2021-03-17 22:16:54 +00:00
log4rs = "1.0"
2021-03-17 22:28:39 +00:00
ctrlc = "3.1"
2021-06-12 18:09:07 +00:00
songbird = { version = "0.1.6", features = ["driver", "builtin-queue"], optional = true }