soundfx-bot/Cargo.toml

23 lines
736 B
TOML
Raw Normal View History

2020-04-13 23:22:31 +00:00
[package]
name = "soundfx-rs"
2021-06-05 14:09:14 +00:00
version = "1.2.5"
2021-01-22 17:19:57 +00:00
authors = ["jellywx <judesouthworth@pm.me>"]
2020-04-13 23:22:31 +00:00
edition = "2018"
[dependencies]
2021-06-05 14:09:14 +00:00
songbird = { git = "https://github.com/FelixMcFelix/songbird", branch = "ws-fix" }
2021-06-09 15:54:31 +00:00
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", features = ["voice", "collector", "unstable_discord_api"] }
sqlx = { version = "0.5", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal"] }
2020-04-13 23:22:31 +00:00
dotenv = "0.15"
2021-04-15 10:40:41 +00:00
tokio = { version = "1", features = ["fs", "process", "io-util"] }
lazy_static = "1.4"
2021-01-22 17:19:57 +00:00
reqwest = "0.11"
2021-03-15 15:03:15 +00:00
env_logger = "0.8"
regex = "1.4"
log = "0.4"
serde_json = "1.0"
2021-04-08 23:38:28 +00:00
dashmap = "4.0"
[dependencies.regex_command_attr]
path = "./regex_command_attr"