From 5a04548e13a84b668432932abf00bd85a29beca0 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Tue, 16 Jan 2024 20:04:25 +0600 Subject: [PATCH] Update http dep --- ntex-http/CHANGES.md | 4 ++++ ntex-http/Cargo.toml | 4 ++-- ntex-router/CHANGES.txt | 4 ++++ ntex-router/Cargo.toml | 8 ++++---- ntex/Cargo.toml | 4 ++-- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/ntex-http/CHANGES.md b/ntex-http/CHANGES.md index 4c0b452f..875dd380 100644 --- a/ntex-http/CHANGES.md +++ b/ntex-http/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.1.12] - 2024-01-16 + +* Update http dependency + ## [0.1.11] - 2023-11-21 * Implement serde::Serialize/Deserialize for HeaderMap diff --git a/ntex-http/Cargo.toml b/ntex-http/Cargo.toml index 84076aa8..40929a7a 100644 --- a/ntex-http/Cargo.toml +++ b/ntex-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-http" -version = "0.1.11" +version = "0.1.12" authors = ["ntex contributors "] description = "Http types for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -16,7 +16,7 @@ name = "ntex_http" path = "src/lib.rs" [dependencies] -http = "0.2" +http = "1" log = "0.4" fxhash = "0.2.1" itoa = "1.0.4" diff --git a/ntex-router/CHANGES.txt b/ntex-router/CHANGES.txt index f1574f4a..35fd06ce 100644 --- a/ntex-router/CHANGES.txt +++ b/ntex-router/CHANGES.txt @@ -1,5 +1,9 @@ # Changes +## [0.5.3] - 2024-01-16 + +* Update http dependency + ## [0.5.2] - 2023-09-12 * Add missing fmt::Debug impls diff --git a/ntex-router/Cargo.toml b/ntex-router/Cargo.toml index 4882b5d0..dd22774f 100644 --- a/ntex-router/Cargo.toml +++ b/ntex-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-router" -version = "0.5.2" +version = "0.5.3" authors = ["ntex contributors "] description = "Path router" keywords = ["ntex"] @@ -20,9 +20,9 @@ default = ["http"] serde = "1.0" ntex-bytes = "0.1.21" log = "0.4" -http = { version = "0.2", optional = true } -regex = { version = "1.9.5", default-features = false, features = ["std"] } +http = { version = "1", optional = true } +regex = { version = "1.9", default-features = false, features = ["std"] } [dev-dependencies] -http = "0.2" +http = "1" serde_derive = "1.0" diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index adaf9b18..79550163 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -50,8 +50,8 @@ async-std = ["ntex-rt/async-std", "ntex-async-std", "ntex-connect/async-std"] [dependencies] ntex-codec = "0.6.2" ntex-connect = "1.0.0" -ntex-http = "0.1.11" -ntex-router = "0.5.2" +ntex-http = "0.1.12" +ntex-router = "0.5.3" ntex-service = "2.0.0" ntex-macros = "0.1.3" ntex-util = "1.0.0"