udp: update constant_time_eq to v0.3.0

This commit is contained in:
Joakim Frostegård 2023-08-28 23:36:25 +02:00
parent 227bf6163c
commit fe8fce94ce
2 changed files with 3 additions and 9 deletions

10
Cargo.lock generated
View file

@ -227,7 +227,7 @@ dependencies = [
"blake3", "blake3",
"cfg-if", "cfg-if",
"compact_str", "compact_str",
"constant_time_eq 0.2.6", "constant_time_eq",
"crossbeam-channel", "crossbeam-channel",
"getrandom", "getrandom",
"hashbrown 0.14.0", "hashbrown 0.14.0",
@ -497,7 +497,7 @@ dependencies = [
"arrayvec", "arrayvec",
"cc", "cc",
"cfg-if", "cfg-if",
"constant_time_eq 0.3.0", "constant_time_eq",
"digest", "digest",
] ]
@ -690,12 +690,6 @@ dependencies = [
"windows-sys 0.45.0", "windows-sys 0.45.0",
] ]
[[package]]
name = "constant_time_eq"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21a53c0a4d288377e7415b53dcfc3c04da5cdc2cc95c8d5ac178b58f0b861ad6"
[[package]] [[package]]
name = "constant_time_eq" name = "constant_time_eq"
version = "0.3.0" version = "0.3.0"

View file

@ -31,7 +31,7 @@ anyhow = "1"
blake3 = "1" blake3 = "1"
cfg-if = "1" cfg-if = "1"
compact_str = "0.7" compact_str = "0.7"
constant_time_eq = "0.2" constant_time_eq = "0.3"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
getrandom = "0.2" getrandom = "0.2"
hashbrown = { version = "0.14", default-features = false } hashbrown = { version = "0.14", default-features = false }