diff --git a/Cargo.lock b/Cargo.lock index de7f349..ca62a23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -128,7 +128,7 @@ dependencies = [ "futures-timer", "futures-util", "handlebars", - "http", + "http 0.2.11", "indexmap", "lru", "mime", @@ -280,7 +280,7 @@ dependencies = [ "bytes", "futures-util", "headers", - "http", + "http 0.2.11", "http-body", "hyper", "itoa", @@ -312,7 +312,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 0.2.11", "http-body", "mime", "rustversion", @@ -485,7 +485,7 @@ dependencies = [ "biscuit", "caster-utils", "fake", - "http", + "http 1.0.0", "hyper", "hyper-tls", "jsonwebtoken", @@ -891,7 +891,7 @@ dependencies = [ "chrono", "deunicode", "dummy", - "http", + "http 0.2.11", "rand", "url-escape", "uuid", @@ -1178,7 +1178,7 @@ dependencies = [ "base64 0.21.5", "bytes", "headers-core", - "http", + "http 0.2.11", "httpdate", "mime", "sha1", @@ -1190,7 +1190,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "http", + "http 0.2.11", ] [[package]] @@ -1243,9 +1243,20 @@ dependencies = [ [[package]] name = "http" -version = "0.2.9" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" dependencies = [ "bytes", "fnv", @@ -1259,7 +1270,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -1291,7 +1302,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -1666,7 +1677,7 @@ dependencies = [ "bytes", "encoding_rs", "futures-util", - "http", + "http 0.2.11", "httparse", "log", "memchr", @@ -3376,7 +3387,7 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", + "http 0.2.11", "http-body", "http-range-header", "pin-project-lite", @@ -3474,7 +3485,7 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http", + "http 0.2.11", "httparse", "log", "rand", diff --git a/libs/auth/Cargo.toml b/libs/auth/Cargo.toml index 3eca3f3..659b8ff 100644 --- a/libs/auth/Cargo.toml +++ b/libs/auth/Cargo.toml @@ -13,7 +13,7 @@ async-trait = "0.1.41" axum = "0.6" biscuit = "0.6.0-beta1" caster-utils = { path = "../../libs/utils" } -http = "0.2" +http = "1.0" hyper = "0.14" hyper-tls = "0.5" jsonwebtoken = "9.1"