diff --git a/Cargo.toml b/Cargo.toml index 0d2e39d..a017802 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,5 +26,5 @@ sedregex = "0.2" rusqlite = { version = "0.26", features = ["bundled"] } warp = "0.3" futures-util = "0.3" -irc = { version = "0.15", default-features = false } +irc = { version = "0.15", default-features = false, features = ["tls-rust"] } tera = { version = "1.15", default-features = false } diff --git a/src/main.rs b/src/main.rs index a16d69a..ecf8ba4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,6 +15,7 @@ use irc::client::{Client, ClientStream}; use irc::proto::{ChannelExt, Command, Prefix}; use rspotify::Credentials; use serde::Deserialize; +use tokio::select; use tokio::sync::broadcast; use tokio::sync::mpsc::unbounded_channel; use tracing_subscriber::EnvFilter;