diff --git a/Cargo.lock b/Cargo.lock index 3d0eb5f..a92355d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -87,9 +87,9 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", - "http-body", - "hyper", + "http 0.2.9", + "http-body 0.4.5", + "hyper 0.14.27", "itoa", "matchit", "memchr", @@ -116,8 +116,8 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "mime", "rustversion", "tower-layer", @@ -320,6 +320,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.5" @@ -327,10 +338,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.9", "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +dependencies = [ + "bytes", + "http 1.0.0", +] + [[package]] name = "httparse" version = "1.8.0" @@ -353,8 +374,8 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "httparse", "httpdate", "itoa", @@ -366,6 +387,21 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "403f9214f3e703236b221f1a9cd88ec8b4adfa5296de01ab96216361f4692f56" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "pin-project-lite", + "tokio", +] + [[package]] name = "idna" version = "0.4.0" @@ -622,7 +658,7 @@ dependencies = [ "clap", "eyre", "git2", - "hyper", + "hyper 1.0.1", "serde", "tokio", "tracing", diff --git a/crates/repomng/Cargo.toml b/crates/repomng/Cargo.toml index c97896a..a3e1685 100644 --- a/crates/repomng/Cargo.toml +++ b/crates/repomng/Cargo.toml @@ -10,7 +10,7 @@ axum = { version = "0.6.20", default-features = false, features = ["http1", "jso clap = { version = "4.4.11", features = ["derive", "env"] } eyre = "0.6.11" git2 = "0.18.1" -hyper = "0.14.27" +hyper = "1.0.1" serde = { version = "1.0.193", features = ["derive"] } tokio = { version = "1.35.0", default-features = false, features = ["macros", "rt-multi-thread"] } tracing = "0.1.40"