chore: bump x25519-dalek version to 2.0.0 (#359)

Signed-off-by: bestmike007 <i@bestmike007.com>
This commit is contained in:
Yuanhai He 2023-08-19 00:02:57 +08:00 committed by GitHub
parent 18eaf59c9c
commit e1d6360d6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@ -383,9 +383,9 @@ dependencies = [
[[package]]
name = "curve25519-dalek"
version = "4.0.0-rc.3"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436ace70fc06e06f7f689d2624dc4e2f0ea666efb5aa704215f7249ae6e047a7"
checksum = "f711ade317dd348950a9910f81c5947e3d8907ebd2b83f76203ff1807e6a2bc2"
dependencies = [
"cfg-if",
"cpufeatures",
@ -1396,9 +1396,9 @@ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
[[package]]
name = "x25519-dalek"
version = "2.0.0-rc.3"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7fae07da688e17059d5886712c933bb0520f15eff2e09cfa18e30968f4e63a"
checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
dependencies = [
"curve25519-dalek",
"rand_core",

View File

@ -31,7 +31,7 @@ tracing-subscriber = { version = "0.3", features = ["fmt"], optional = true }
ip_network = "0.4.1"
ip_network_table = "0.2.0"
ring = "0.16"
x25519-dalek = { version = "=2.0.0-rc.3", features = [
x25519-dalek = { version = "2.0.0", features = [
"reusable_secrets",
"static_secrets",
] }