replace trust-dns with blocking code

This commit is contained in:
Nikolay Kim 2021-04-03 14:45:27 +06:00
parent cb9e3ffeda
commit 111e4ec717
15 changed files with 90 additions and 152 deletions

View file

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

View file

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