diff --git a/Cargo.lock b/Cargo.lock index 5c013947..7f434567 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -239,7 +239,7 @@ dependencies = [ "http 1.0.0", "http-body 1.0.0", "http-body-util", - "hyper 1.1.0", + "hyper 1.2.0", "hyper-util", "itoa", "matchit", @@ -1044,9 +1044,9 @@ dependencies = [ [[package]] name = "hyper" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75" +checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" dependencies = [ "bytes", "futures-channel", @@ -1058,6 +1058,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "smallvec", "tokio", "want", ] @@ -1098,7 +1099,7 @@ dependencies = [ "futures-util", "http 1.0.0", "http-body 1.0.0", - "hyper 1.1.0", + "hyper 1.2.0", "pin-project-lite", "socket2", "tokio", @@ -2230,7 +2231,7 @@ dependencies = [ "chrono", "clap", "fastrand", - "hyper 1.1.0", + "hyper 1.2.0", "lazy_static", "log", "md5", @@ -2278,7 +2279,7 @@ dependencies = [ "chrono", "clap", "futures-util", - "hyper 1.1.0", + "hyper 1.2.0", "jsonwebtoken", "lazy_static", "lettre", diff --git a/client/Cargo.toml b/client/Cargo.toml index 1cf9a013..94be6b9f 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -24,7 +24,7 @@ bytes = {version = "1", features = ["serde"]} chrono = "0.4" clap = {version = "4.5", features = ["derive", "unicode", "env"]} fastrand = "2.0.1" -hyper = {version = "1.1", features = ["full"]} +hyper = {version = "1.2", features = ["full"]} lazy_static = "1.4" log = "0.4" md5 = "0.7.0" diff --git a/server/Cargo.toml b/server/Cargo.toml index f4db1448..b4e0badd 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -26,7 +26,7 @@ bytes = {version = "1", features = ["serde"]} chrono = "0.4" clap = {version = "4.5", features = ["derive", "unicode"]} futures-util = {version = "0.3", default-features = false} -hyper = {version = "1.1", features = ["full"]} +hyper = {version = "1.2", features = ["full"]} jsonwebtoken = "9.2" lazy_static = "1.4" lettre = {version = "0.11", default-features = false, features = ["smtp-transport", "pool", "hostname", "builder", "rustls-tls", "tokio1-rustls-tls"]}