diff options
Diffstat (limited to 'exes/rest')
| -rw-r--r-- | exes/rest/Cargo.toml | 14 | ||||
| -rw-r--r-- | exes/rest/src/handler.rs | 2 | 
2 files changed, 8 insertions, 8 deletions
diff --git a/exes/rest/Cargo.toml b/exes/rest/Cargo.toml index d058a73..855167d 100644 --- a/exes/rest/Cargo.toml +++ b/exes/rest/Cargo.toml @@ -20,13 +20,13 @@ serde = { workspace = true }  serde_json = { workspace = true }  hyper = { workspace = true } -futures-util = "0.3.17" -hyper-rustls = "0.23.2" +futures-util = "0.3.28" +hyper-rustls = "0.24.1"  lazy_static = "1.4.0" -xxhash-rust = { version = "0.8.2", features = ["xxh32"] } -twilight-http-ratelimiting = "0.14.2" +xxhash-rust = { version = "0.8.6", features = ["xxh32"] } +twilight-http-ratelimiting = "0.15.1"  hashring = "0.3.0" -tonic = "0.8.3" -tokio-stream = "0.1.11" -dns-lookup = "1.0.8" +tonic = "0.9.2" +tokio-stream = "0.1.14" +dns-lookup = "2.0.2" diff --git a/exes/rest/src/handler.rs b/exes/rest/src/handler.rs index c80132f..cd867fe 100644 --- a/exes/rest/src/handler.rs +++ b/exes/rest/src/handler.rs @@ -18,7 +18,7 @@ use std::{      sync::Arc,      time::SystemTime,  }; -use tracing::{debug_span, error, info_span, log::trace, Instrument}; +use tracing::{debug_span, error, info_span, trace, Instrument};  use twilight_http_ratelimiting::{Method, Path};  use crate::{config::ReverseProxy, ratelimit_client::RemoteRatelimiter};  | 
