Update http dep

This commit is contained in:
Nikolay Kim 2024-01-16 20:04:25 +06:00
parent d99178519e
commit 5a04548e13
5 changed files with 16 additions and 8 deletions

View file

@ -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

View file

@ -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"