diff --git a/Cargo.lock b/Cargo.lock index 05eb5a03..74ec964c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -312,9 +312,9 @@ dependencies = [ "bytes", "futures-util", "headers", - "http", - "http-body", - "hyper", + "http 0.2.12", + "http-body 0.4.6", + "hyper 0.14.32", "itoa", "matchit", "memchr", @@ -340,8 +340,8 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.12", + "http-body 0.4.6", "mime", "tower-layer", "tower-service", @@ -779,7 +779,7 @@ dependencies = [ "anyhow", "drawbridge-jose", "drawbridge-type", - "http", + "http 0.2.12", "mime", "rustls", "rustls-pki-types", @@ -814,7 +814,7 @@ dependencies = [ "drawbridge-type", "futures", "futures-rustls", - "hyper", + "hyper 1.9.0", "jsonwebtoken", "mime", "once_cell", @@ -1268,7 +1268,7 @@ dependencies = [ "base64 0.21.7", "bytes", "headers-core", - "http", + "http 0.2.12", "httpdate", "mime", "sha1", @@ -1280,7 +1280,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "http", + "http 0.2.12", ] [[package]] @@ -1336,6 +1336,16 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + [[package]] name = "http-body" version = "0.4.6" @@ -1343,10 +1353,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http 1.4.0", +] + [[package]] name = "http-range-header" version = "0.3.1" @@ -1395,8 +1415,8 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.12", + "http-body 0.4.6", "httparse", "httpdate", "itoa", @@ -1408,6 +1428,26 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", +] + [[package]] name = "iana-time-zone" version = "0.1.61" @@ -1890,7 +1930,7 @@ dependencies = [ "base64 0.13.1", "chrono", "getrandom 0.2.15", - "http", + "http 0.2.12", "rand 0.8.5", "serde", "serde_json", @@ -1927,7 +1967,7 @@ dependencies = [ "dyn-clone", "ed25519-dalek", "hmac", - "http", + "http 0.2.12", "itertools", "log", "oauth2", @@ -2882,8 +2922,8 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.12", + "http-body 0.4.6", "http-range-header", "pin-project-lite", "tower", @@ -2901,8 +2941,8 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.12", + "http-body 0.4.6", "http-range-header", "pin-project-lite", "tower-layer", diff --git a/Cargo.toml b/Cargo.toml index adc4e1a4..91afa74c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ futures-rustls = { version = "0.26.0", default-features = false } headers = { version = "0.3.9", default-features = false } http = { version = "0.2.12", default-features = false } http-types = { version = "2.12.0", default-features = false } -hyper = { version = "0.14.32", default-features = false } +hyper = { version = "1.9.0", default-features = false } jsonwebtoken = { version = "9.3.1", default-features = false } mediatype = { version = "0.19.20", default-features = false } mime = { version = "0.3.17", default-features = false }