diff --git a/Cargo.toml b/Cargo.toml index 846c083..369fe6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,16 +20,15 @@ reqwest = { version = "0.11", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_repr = "0.1" -chrono = "0.4.24" +chrono = "0.4.34" rand = "0.8" -url = "2.3.1" -regex = "1.8" -num_cpus = "1.15" +url = "2.5" +regex = "1.10" +num_cpus = "1.16" threadpool = "1.8" -tokio = { version = "1.27", features = ["full", "tracing"] } -mongodb = "2.5" +tokio = { version = "1.36.0", features = ["full", "tracing"] } +mongodb = "2.8" futures = "0.3" itertools = "0.12.0" http = "1.0.0" serde_regex = "1.1.0" -console-subscriber = "0.2.0" diff --git a/src/main.rs b/src/main.rs index a0b10dd..4d17039 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,8 +55,6 @@ use utils::{ #[tokio::main] async fn main() { - console_subscriber::init(); - // Login with a bot token from the environment let token = env::var("DISCORD_TOKEN").expect("no bot token"); let application_id: ApplicationId = env::var("DISCORD_ID")