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.
22 lines
772 B
TOML
22 lines
772 B
TOML
[package]
|
|
name = "twilight"
|
|
version = "0.1.0"
|
|
authors = ["Twilight and Serenity Contributors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2"
|
|
serde_json = { version = "1" }
|
|
tokio = { features = ["macros", "rt-multi-thread", "sync"], version = "1" }
|
|
twilight-gateway = { git = "https://github.com/twilight-rs/twilight", branch = "v0.3" }
|
|
twilight-http = { git = "https://github.com/twilight-rs/twilight", branch = "v0.3" }
|
|
twilight-model = { git = "https://github.com/twilight-rs/twilight", branch = "v0.3" }
|
|
twilight-standby = { git = "https://github.com/twilight-rs/twilight", branch = "v0.3" }
|
|
|
|
[dependencies.songbird]
|
|
path = "../.."
|
|
default-features = false
|
|
features = ["twilight-rustls", "gateway", "driver", "stock-zlib"]
|