update to use idna 0.4.0

This commit is contained in:
Zhang Jingqiang 2023-06-10 21:45:02 +08:00 committed by Benjamin Fry
parent 01498f9f16
commit 32248149f7
2 changed files with 3 additions and 13 deletions

14
Cargo.lock generated
View File

@ -690,16 +690,6 @@ dependencies = [
"itoa",
]
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "idna"
version = "0.4.0"
@ -1890,7 +1880,7 @@ dependencies = [
"futures-util",
"h2",
"http",
"idna 0.3.0",
"idna",
"ipnet",
"js-sys",
"native-tls",
@ -2057,7 +2047,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
dependencies = [
"form_urlencoded",
"idna 0.4.0",
"idna",
"percent-encoding",
"serde",
]

View File

@ -81,7 +81,7 @@ clap = { version = "4.0", default-features = false }
console = "0.15.0"
data-encoding = "2.2.0"
enum-as-inner = "0.6"
idna = "0.3.0"
idna = "0.4.0"
ipconfig = "0.3.0"
ipnet = "2.3.0"
js-sys = "0.3.44"