From e09843ded7d8a492159ad62854a88c17d013703a Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Fri, 21 Feb 2025 16:28:39 +0000 Subject: [PATCH] Chore: quick respin on twilight-example. Feature unification in workspaces strikes again. --- examples/twilight/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/twilight/Cargo.toml b/examples/twilight/Cargo.toml index d00ac2b..f5a2077 100644 --- a/examples/twilight/Cargo.toml +++ b/examples/twilight/Cargo.toml @@ -8,8 +8,9 @@ edition = "2021" futures = "0.3" reqwest = { workspace = true } # In an actual twilight project, use the "tws" feature as below. +# Tungstenite is used here due to workspace feature unification. # songbird = { workspace = true, features = ["driver", "gateway", "twilight", "rustls", "tws"] } -songbird = { workspace = true, features = ["driver", "gateway", "twilight", "rustls"] } +songbird = { workspace = true, features = ["driver", "gateway", "twilight", "rustls", "tungstenite"] } symphonia = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true, default-features = true }