From 0a2860cabbcb7d9d169aff98de95f7d7708b2291 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:24:01 +0000 Subject: [PATCH] chore(deps): Bump curve25519-dalek from 4.1.1 to 4.1.3 Bumps [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 4.1.1 to 4.1.3. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/curve25519-4.1.1...curve25519-4.1.3) --- updated-dependencies: - dependency-name: curve25519-dalek dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++--------- account-keys/Cargo.toml | 2 +- api/Cargo.toml | 2 +- consensus/service/Cargo.toml | 2 +- core/Cargo.toml | 2 +- core/types/Cargo.toml | 2 +- crypto/digestible/Cargo.toml | 2 +- crypto/keys/Cargo.toml | 2 +- crypto/ring-signature/Cargo.toml | 2 +- crypto/ring-signature/signer/Cargo.toml | 2 +- fog/distribution/Cargo.toml | 2 +- transaction/builder/Cargo.toml | 2 +- transaction/core/Cargo.toml | 2 +- transaction/extra/Cargo.toml | 2 +- 14 files changed, 15 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c573593a8..9afc84322c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1025,16 +1025,15 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "4.1.1" +version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ "cfg-if 1.0.0", "cpufeatures", "curve25519-dalek-derive", "digest 0.10.7", "fiat-crypto", - "platforms", "rand_core", "rustc_version", "serde", @@ -7027,12 +7026,6 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" -[[package]] -name = "platforms" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" - [[package]] name = "plotters" version = "0.3.1" diff --git a/account-keys/Cargo.toml b/account-keys/Cargo.toml index fef1b36b54..c5d8725602 100644 --- a/account-keys/Cargo.toml +++ b/account-keys/Cargo.toml @@ -15,7 +15,7 @@ default = ["std", "prost", "serde", "mc-util-serial", "mc-crypto-digestible/defa [dependencies] -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } # External dependencies displaydoc = { version = "0.2", default-features = false } hex_fmt = "0.3" diff --git a/api/Cargo.toml b/api/Cargo.toml index 15b07f91c3..13506a0f60 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -32,7 +32,7 @@ mc-sgx-core-types = "0.11.0" mc-sgx-dcap-types = "0.11.0" protobuf = "2.27.1" -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } [build-dependencies] mc-util-build-grpc = { path = "../util/build/grpc" } diff --git a/consensus/service/Cargo.toml b/consensus/service/Cargo.toml index 57026c2de8..a4e4e55e2f 100644 --- a/consensus/service/Cargo.toml +++ b/consensus/service/Cargo.toml @@ -83,4 +83,4 @@ rand_hc = "0.3" serial_test = "3.0" tempfile = "3.10" -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } diff --git a/core/Cargo.toml b/core/Cargo.toml index 23034da7ae..97de7a3c78 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,7 +16,7 @@ serde = ["dep:serde", "mc-core-types/serde"] default = ["bip39"] [dependencies] -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } ed25519-dalek = { version = "2.1.1", default-features = false } generic-array = { version = "0.14.7", default-features = false, features = [ "more_lengths" ] } hkdf = { version = "0.12.4" } diff --git a/core/types/Cargo.toml b/core/types/Cargo.toml index 7b54dbb90e..2e5fc6ac47 100644 --- a/core/types/Cargo.toml +++ b/core/types/Cargo.toml @@ -14,7 +14,7 @@ prost = ["dep:prost", "mc-crypto-keys/prost"] [dependencies] # External dependencies -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } prost = { version = "0.12", optional = true, default-features = false } serde = { version = "1.0.197", optional = true, default-features = false, features = [ "derive" ] } subtle = { version = "2.4.1", default-features = false } diff --git a/crypto/digestible/Cargo.toml b/crypto/digestible/Cargo.toml index 0ff5c67c45..901f50e6c6 100644 --- a/crypto/digestible/Cargo.toml +++ b/crypto/digestible/Cargo.toml @@ -11,7 +11,7 @@ rust-version = { workspace = true } cfg-if = "1.0" # Built-in support for dalek primitives -curve25519-dalek = { version = "4.1.1", default-features = false, optional = true } +curve25519-dalek = { version = "4.1.3", default-features = false, optional = true } ed25519-dalek = { version = "2.1.1", default-features = false, optional = true } generic-array = "0.14" diff --git a/crypto/keys/Cargo.toml b/crypto/keys/Cargo.toml index 9662b6de0c..a9f365cf2b 100644 --- a/crypto/keys/Cargo.toml +++ b/crypto/keys/Cargo.toml @@ -17,7 +17,7 @@ default = ["alloc", "serde", "prost", "mc-util-repr-bytes/default", "curve25519- [dependencies] base64 = { version = "0.21", default-features = false } -curve25519-dalek = { version = "4.1.1", default-features = false, features = ["rand_core"] } +curve25519-dalek = { version = "4.1.3", default-features = false, features = ["rand_core"] } digest = "0.10" displaydoc = { version = "0.2", default-features = false } ed25519 = { version = "2.2.3", default-features = false } diff --git a/crypto/ring-signature/Cargo.toml b/crypto/ring-signature/Cargo.toml index 771da68184..58920763b3 100644 --- a/crypto/ring-signature/Cargo.toml +++ b/crypto/ring-signature/Cargo.toml @@ -17,7 +17,7 @@ default = ["alloc", "serde", "prost", "mc-util-repr-bytes/default", "curve25519- [dependencies] -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } # External dependencies displaydoc = { version = "0.2", default-features = false } diff --git a/crypto/ring-signature/signer/Cargo.toml b/crypto/ring-signature/signer/Cargo.toml index 572bfb8258..e10048fe95 100644 --- a/crypto/ring-signature/signer/Cargo.toml +++ b/crypto/ring-signature/signer/Cargo.toml @@ -14,7 +14,7 @@ alloc = ["serde/alloc", "mc-crypto-ring-signature/alloc", "curve25519-dalek/allo default = ["serde", "alloc", "curve25519-dalek/default"] [dependencies] -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } # External dependencies displaydoc = { version = "0.2", default-features = false } generic-array = { version = "0.14", features = ["serde", "more_lengths"] } diff --git a/fog/distribution/Cargo.toml b/fog/distribution/Cargo.toml index 0433ac610b..7c0693537b 100644 --- a/fog/distribution/Cargo.toml +++ b/fog/distribution/Cargo.toml @@ -39,7 +39,7 @@ rayon = "1.9" retry = "2.0" tempfile = "3.10" -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } [dev-dependencies] mc-common = { path = "../../common", features = ["loggers"] } diff --git a/transaction/builder/Cargo.toml b/transaction/builder/Cargo.toml index 760e6be809..a50f54adbe 100644 --- a/transaction/builder/Cargo.toml +++ b/transaction/builder/Cargo.toml @@ -38,7 +38,7 @@ mc-util-serial = { path = "../../util/serial" } mc-util-u64-ratio = { path = "../../util/u64-ratio" } # `default` feature enables curve25519-dalek target detection for x86_64 with and without AVX -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } [dev-dependencies] assert_matches = "1.5" diff --git a/transaction/core/Cargo.toml b/transaction/core/Cargo.toml index 62b02e0db8..118eb7bdda 100644 --- a/transaction/core/Cargo.toml +++ b/transaction/core/Cargo.toml @@ -13,7 +13,7 @@ aes = "0.8.4" bulletproofs-og = { version = "3.0.0-pre.1", default-features = false } crc = { version = "3.0.0", default-features = false } ctr = "0.9.2" -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } displaydoc = { version = "0.2", default-features = false } generic-array = { version = "0.14", features = ["serde", "more_lengths"] } hex_fmt = "0.3" diff --git a/transaction/extra/Cargo.toml b/transaction/extra/Cargo.toml index f343ca697c..7a80993af2 100644 --- a/transaction/extra/Cargo.toml +++ b/transaction/extra/Cargo.toml @@ -37,7 +37,7 @@ mc-util-u64-ratio = { path = "../../util/u64-ratio" } mc-util-vec-map = { path = "../../util/vec-map" } mc-util-zip-exact = { path = "../../util/zip-exact" } -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.3", default-features = false } [dev-dependencies] assert_matches = "1.5"