Migrates to the new version of tokio, requiring channel and sleep changes in a few locations. Additionally points to the in-tree v0.3 version of twilight.
23 lines
498 B
TOML
23 lines
498 B
TOML
[package]
|
|
name = "voice_storage"
|
|
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 = ["cache", "framework", "standard_framework", "voice", "http", "rustls_backend"]
|
|
git = "https://github.com/serenity-rs/serenity"
|
|
branch = "current"
|
|
|
|
[dependencies.tokio]
|
|
version = "1.0"
|
|
features = ["macros", "rt-multi-thread"]
|