diff --git a/Cargo.lock b/Cargo.lock index baf68cb..70e111c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1187,16 +1187,16 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "eb78f30e4b41e98ca4cce5acb51168a033839a7af9e42b380355808e14e98ee0" dependencies = [ + "autocfg", "bytes", "libc", "memchr", "mio", "num_cpus", - "once_cell", "pin-project-lite", "signal-hook-registry", "socket2", diff --git a/Cargo.toml b/Cargo.toml index 8df8b5e..6d523a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ log = "0.4.17" reqwest = { version = "0.11.11", default-features = false, features = ["json", "rustls-tls-webpki-roots"] } serde = { version = "1.0.137", features = ["derive"] } simplelog = "0.12.0" -tokio = { version = "1.19.2", features = ["fs", "macros", "rt-multi-thread", "signal"] } +tokio = { version = "1.20.4", features = ["fs", "macros", "rt-multi-thread", "signal"] } toml = "0.5.9" twilight-cache-inmemory = "0.11.0" twilight-gateway = { version = "0.11.0", default-features = false, features = ["rustls-webpki-roots", "zlib-stock"] }