From 6a9335628c50114760666c242203d56f7c3b1dac Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Wed, 17 Jul 2024 11:31:12 +0100 Subject: [PATCH] Revert bbc9e03, update tracing-subscriber in examples Tokio-tungstenite have made some runtime-breaking changes to how crypto setup is init'd -- i.e., users must do it themselves. Reverting due to the huge (breaking) inconvenience this poses. --- Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aeb1f74..1004d51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ stream_lib = { default-features = false, optional = true, version = "0.4.2" } 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-tungstenite = { optional = true, version = "0.23" } +tokio-tungstenite = { optional = true, version = "0.21" } tokio-util = { features = ["io"], optional = true, version = "0.7" } tracing = { version = "0.1", features = ["log"] } tracing-futures = "0.2" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 1a4f984..40e63bc 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -15,7 +15,7 @@ songbird = { path = "../", version = "0.4" } symphonia = { features = ["aac", "mp3", "isomp4", "alac"], version = "0.5.2" } tokio = { features = ["macros", "rt-multi-thread", "signal", "sync"], version = "1" } tracing = "0.1" -tracing-subscriber = "0.2" +tracing-subscriber = "0.3" tracing-futures = "0.2" [profile.release]