Deps: Move to published symphonia v0.5.2 from git
Symphonia v0.5.2 has all the API changes and fixes we were depending on, which leaves next one step closer to publishable. Tested using `cargo make ready`.
This commit is contained in:
15
Cargo.toml
15
Cargo.toml
@@ -37,6 +37,8 @@ serde_json = "1"
|
|||||||
simd-json = { features = ["serde_impl"], optional = true, version = "0.7.0" }
|
simd-json = { features = ["serde_impl"], optional = true, version = "0.7.0" }
|
||||||
socket2 = { optional = true, version = "0.4" }
|
socket2 = { optional = true, version = "0.4" }
|
||||||
streamcatcher = { optional = true, version = "1" }
|
streamcatcher = { optional = true, version = "1" }
|
||||||
|
symphonia = { default_features = false, optional = true, version = "0.5.2" }
|
||||||
|
symphonia-core = { optional = true, version = "0.5.2" }
|
||||||
tokio = { default-features = false, optional = true, version = "1.0" }
|
tokio = { default-features = false, optional = true, version = "1.0" }
|
||||||
tokio-tungstenite = { optional = true, version = "0.18" }
|
tokio-tungstenite = { optional = true, version = "0.18" }
|
||||||
tokio-util = { features = ["io"], optional = true, version = "0.7" }
|
tokio-util = { features = ["io"], optional = true, version = "0.7" }
|
||||||
@@ -59,21 +61,10 @@ optional = true
|
|||||||
version = "0.11"
|
version = "0.11"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.symphonia]
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
default-features = false
|
|
||||||
optional = true
|
|
||||||
version = "0.5"
|
|
||||||
|
|
||||||
[dependencies.symphonia-core]
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
optional = true
|
|
||||||
version = "0.5"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.4"
|
criterion = "0.4"
|
||||||
ntest = "0.9"
|
ntest = "0.9"
|
||||||
symphonia = { version = "0.5", features = ["aac", "isomp4", "mp3"], git = "https://github.com/pdeljanov/Symphonia" }
|
symphonia = { version = "0.5.2", features = ["aac", "isomp4", "mp3"] }
|
||||||
utils = { path = "utils" }
|
utils = { path = "utils" }
|
||||||
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
|
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
|
||||||
|
|
||||||
|
|||||||
@@ -39,8 +39,6 @@ features = ["builtin-queue"]
|
|||||||
[dependencies.symphonia]
|
[dependencies.symphonia]
|
||||||
# version = "0.5"
|
# version = "0.5"
|
||||||
features = ["aac", "mp3", "isomp4", "alac"] # ...as well as any extras you need!
|
features = ["aac", "mp3", "isomp4", "alac"] # ...as well as any extras you need!
|
||||||
# **NOTE**: For now, please use this repository in pre-releases.
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|||||||
@@ -5,16 +5,12 @@ authors = ["my name <my@email.address>"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
symphonia = { features = ["aac", "mp3", "isomp4", "alac"], version = "0.5.2" }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = "0.2"
|
tracing-subscriber = "0.2"
|
||||||
tracing-futures = "0.2"
|
tracing-futures = "0.2"
|
||||||
reqwest = "0.11"
|
reqwest = "0.11"
|
||||||
|
|
||||||
[dependencies.symphonia]
|
|
||||||
version = "0.5"
|
|
||||||
features = ["aac", "mp3", "isomp4", "alac"]
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
|
|
||||||
[dependencies.songbird]
|
[dependencies.songbird]
|
||||||
path = "../../../"
|
path = "../../../"
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ authors = ["my name <my@email.address>"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
symphonia = { features = ["mp3"], version = "0.5.2" }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = "0.2"
|
tracing-subscriber = "0.2"
|
||||||
tracing-futures = "0.2"
|
tracing-futures = "0.2"
|
||||||
@@ -16,11 +17,6 @@ path = "../../../"
|
|||||||
version = "0.11"
|
version = "0.11"
|
||||||
features = ["cache", "framework", "standard_framework", "voice", "http", "rustls_backend"]
|
features = ["cache", "framework", "standard_framework", "voice", "http", "rustls_backend"]
|
||||||
|
|
||||||
[dependencies.symphonia]
|
|
||||||
version = "0.5"
|
|
||||||
features = ["mp3"]
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
features = ["macros", "rt-multi-thread"]
|
features = ["macros", "rt-multi-thread"]
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
reqwest = "0.11"
|
reqwest = "0.11"
|
||||||
|
symphonia = { features = ["aac", "mp3", "isomp4", "alac"], version = "0.5.2" }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = "0.2"
|
tracing-subscriber = "0.2"
|
||||||
tracing-futures = "0.2"
|
tracing-futures = "0.2"
|
||||||
@@ -18,11 +19,6 @@ path = "../../../"
|
|||||||
version = "0.11"
|
version = "0.11"
|
||||||
features = ["cache", "standard_framework", "voice", "rustls_backend"]
|
features = ["cache", "standard_framework", "voice", "rustls_backend"]
|
||||||
|
|
||||||
[dependencies.symphonia]
|
|
||||||
version = "0.5"
|
|
||||||
features = ["aac", "mp3", "isomp4", "alac"]
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
features = ["macros", "rt-multi-thread", "signal"]
|
features = ["macros", "rt-multi-thread", "signal"]
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
reqwest = "0.11"
|
reqwest = "0.11"
|
||||||
|
symphonia = { features = ["aac", "mp3", "isomp4", "alac"], version = "0.5.2" }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = "0.2"
|
tracing-subscriber = "0.2"
|
||||||
tokio = { features = ["macros", "rt-multi-thread", "sync"], version = "1" }
|
tokio = { features = ["macros", "rt-multi-thread", "sync"], version = "1" }
|
||||||
@@ -19,8 +20,3 @@ twilight-standby = "0.14"
|
|||||||
default-features = false
|
default-features = false
|
||||||
path = "../.."
|
path = "../.."
|
||||||
features = ["driver", "gateway", "twilight", "rustls"]
|
features = ["driver", "gateway", "twilight", "rustls"]
|
||||||
|
|
||||||
[dependencies.symphonia]
|
|
||||||
version = "0.5"
|
|
||||||
features = ["aac", "mp3", "isomp4", "alac"]
|
|
||||||
git = "https://github.com/pdeljanov/Symphonia"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user