Update Cargo.toml to reflect the separation of songbird from Serenity's repository

This commit is contained in:
Alex M. M
2020-11-13 14:55:38 +01:00
parent 868785ba71
commit 6724655351

View File

@@ -3,13 +3,13 @@ authors = ["Kyle Simpson <kyleandrew.simpson@gmail.com>"]
description = "An async Rust library for the Discord voice API." description = "An async Rust library for the Discord voice API."
documentation = "https://docs.rs/songbird" documentation = "https://docs.rs/songbird"
edition = "2018" edition = "2018"
homepage = "https://github.com/serenity-rs/serenity" homepage = "https://github.com/serenity-rs/songbird"
include = ["src/**/*.rs", "Cargo.toml", "build.rs"] include = ["src/**/*.rs", "Cargo.toml", "build.rs"]
keywords = ["discord", "api", "rtp", "audio"] keywords = ["discord", "api", "rtp", "audio"]
license = "ISC" license = "ISC"
name = "songbird" name = "songbird"
readme = "README.md" readme = "README.md"
repository = "https://github.com/serenity-rs/serenity.git" repository = "https://github.com/serenity-rs/songbird.git"
version = "0.1.0" version = "0.1.0"
[dependencies] [dependencies]
@@ -59,12 +59,14 @@ version = "0.7"
[dependencies.serenity] [dependencies.serenity]
optional = true optional = true
features = ["voice", "gateway"] features = ["voice", "gateway"]
path = "../" git = "https://github.com/serenity-rs/serenity"
branch = "current"
version = "0.9.0" version = "0.9.0"
[dependencies.serenity-voice-model] [dependencies.serenity-voice-model]
optional = true optional = true
path = "../voice-model" git = "https://github.com/serenity-rs/serenity"
branch = "current"
version = "0.10" version = "0.10"
[dependencies.spin_sleep] [dependencies.spin_sleep]