RMusicBot/Cargo.toml
2019-04-03 11:42:06 +02:00

34 lines
594 B
TOML

[package]
name = "RMusicBot"
edition = "2018"
version = "0.1.0"
authors = ["hodasemi <michaelh.95@t-online.de>"]
[dependencies]
typemap = "~0.3"
serde_json = "*"
rand = "0.6"
rusqlite = { version = "*", features = ["bundled"] }
[dependencies.serenity]
default-features = false
features = [
"builder",
"cache",
"client",
"framework",
"gateway",
"model",
"standard_framework",
"utils",
"voice"
]
version = "0.5"
git = "https://github.com/hodasemi/serenity.git"
branch = "current"
[dependencies.parking_lot]
version = "^0.5"
[profile.dev]
codegen-units = 16