From 33657e18c8f8fdc4a47f2da030c8724f4bc0ff16 Mon Sep 17 00:00:00 2001 From: Yash Karandikar Date: Sat, 16 Apr 2022 18:37:06 -0500 Subject: [PATCH] Fix errors maybe --- Cargo.toml | 2 +- src/main.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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;