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 }