23 lines
451 B
TOML
23 lines
451 B
TOML
[package]
|
|
name = "voice"
|
|
version = "0.1.0"
|
|
authors = ["my name <my@email.address>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2"
|
|
tracing-futures = "0.2"
|
|
|
|
[dependencies.songbird]
|
|
path = "../../../"
|
|
|
|
[dependencies.serenity]
|
|
features = ["client", "standard_framework", "voice", "rustls_backend"]
|
|
git = "https://github.com/serenity-rs/serenity"
|
|
branch = "current"
|
|
|
|
[dependencies.tokio]
|
|
version = "0.2"
|
|
features = ["macros"]
|