From 67246553515a5f59a24eee892bbcb2b1781c822c Mon Sep 17 00:00:00 2001 From: "Alex M. M" Date: Fri, 13 Nov 2020 14:55:38 +0100 Subject: [PATCH] Update `Cargo.toml` to reflect the separation of songbird from Serenity's repository --- Cargo.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 15ce8b3f9..ace02c2f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,13 +3,13 @@ authors = ["Kyle Simpson "] description = "An async Rust library for the Discord voice API." documentation = "https://docs.rs/songbird" edition = "2018" -homepage = "https://github.com/serenity-rs/serenity" +homepage = "https://github.com/serenity-rs/songbird" include = ["src/**/*.rs", "Cargo.toml", "build.rs"] keywords = ["discord", "api", "rtp", "audio"] license = "ISC" name = "songbird" readme = "README.md" -repository = "https://github.com/serenity-rs/serenity.git" +repository = "https://github.com/serenity-rs/songbird.git" version = "0.1.0" [dependencies] @@ -59,12 +59,14 @@ version = "0.7" [dependencies.serenity] optional = true features = ["voice", "gateway"] -path = "../" +git = "https://github.com/serenity-rs/serenity" +branch = "current" version = "0.9.0" [dependencies.serenity-voice-model] optional = true -path = "../voice-model" +git = "https://github.com/serenity-rs/serenity" +branch = "current" version = "0.10" [dependencies.spin_sleep]