mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
replace trust-dns with blocking code
This commit is contained in:
parent
cb9e3ffeda
commit
111e4ec717
15 changed files with 90 additions and 152 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.4.3] - 2021-04-03
|
||||
|
||||
* Disable some of regex features
|
||||
|
||||
## [0.4.2] - 2021-03-16
|
||||
|
||||
* Use `IntoPattern` for prefix resources
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-router"
|
||||
version = "0.4.2"
|
||||
version = "0.4.3"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Path router"
|
||||
keywords = ["ntex"]
|
||||
|
@ -17,11 +17,11 @@ path = "src/lib.rs"
|
|||
default = ["http"]
|
||||
|
||||
[dependencies]
|
||||
regex = "1.4"
|
||||
serde = "1.0"
|
||||
bytestring = "1.0"
|
||||
log = "0.4"
|
||||
http = { version = "0.2", optional = true }
|
||||
regex = { version = "1.4.5", default-features = false, features = ["std"] }
|
||||
|
||||
[dev-dependencies]
|
||||
http = "0.2"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue