From f4f8630b9a5ccc5f856f77a5131a6e2e564ed297 Mon Sep 17 00:00:00 2001 From: sheroz Date: Fri, 17 Nov 2023 17:29:41 +0300 Subject: [PATCH] updated hyper version --- anor-http/Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/anor-http/Cargo.toml b/anor-http/Cargo.toml index df907d5..e10634f 100644 --- a/anor-http/Cargo.toml +++ b/anor-http/Cargo.toml @@ -13,12 +13,13 @@ categories = ["data-structures", "caching", "database", "filesystem"] [dependencies] tracing = "0.1" -hyper = { version = "1.0.0-rc.4", features = ["full"] } +hyper = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] } tokio-util = "0.7" -http = "0.2" -hyper-util = { git = "https://github.com/hyperium/hyper-util.git" } -http-body-util = "0.1.0-rc.3" +http = "1" +hyper-util = { version = "0.1", features = ["full"] } +futures-util = { version = "0.3", default-features = false } +http-body-util = "0.1" bytes = "1" http_common = "0.2.2"