mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-01 20:07:39 +03:00
Update http dep
This commit is contained in:
parent
d99178519e
commit
5a04548e13
5 changed files with 16 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-http"
|
||||
version = "0.1.11"
|
||||
version = "0.1.12"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-router"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue