bump resolv-conf from 0.6.0 to 0.7.0

This commit is contained in:
Will 2020-11-13 15:11:37 +09:00 committed by Benjamin Fry
parent 550c566720
commit 7d1a27edae
3 changed files with 9 additions and 3 deletions

View File

@ -60,6 +60,12 @@ bound for implementing the `Connect` trait.
- (proto) Add Name.parse_ptr_name, to IP address (@Mygod) #1107
- (resolver) Allow HTTPS to be generic over Runtime (@balboah) #1077 #1074
## 0.19.6
### Fixed
- bump resolv-conf from 0.6.0 to 0.7.0, fixes system resolv.conf parse issue (@wg) #1285
## 0.19.5
### Fixed

4
Cargo.lock generated
View File

@ -1280,9 +1280,9 @@ dependencies = [
[[package]]
name = "resolv-conf"
version = "0.6.3"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11834e137f3b14e309437a8276714eed3a80d1ef894869e510f2c0c0b98b9f4a"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
"hostname",
"quick-error",

View File

@ -72,7 +72,7 @@ lazy_static = "1.0"
log = "0.4"
lru-cache = "0.1.2"
parking_lot = "0.11"
resolv-conf = { version = "0.6.0", optional = true, features = ["system"] }
resolv-conf = { version = "0.7.0", optional = true, features = ["system"] }
rustls = {version = "0.18", optional = true}
serde = { version = "1.0", features = ["derive"], optional = true }
smallvec = "1.2"