From c5db92cc1071ce90d7ea468d88eb94fa79bfd127 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jul 2024 21:54:12 +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 2f570cc792..fdc144821d 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 c91d7a3f64..4c748d0196 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 12619ca6ba..0455026cb4 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 97894e6ae1..0d3edc0259 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 2befb7fb2d..8582ecfadb 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 be7ce0d6e8..4ccd8790de 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 9d001aea3c..4653dcff56 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 49516468be..78a6050e9a 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 fdc3600a04..8cee959540 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 207e4dd228..e321d73a62 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 1e87d787b3..4b24ce077c 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 64ea3d273c..50afd027c9 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 565fe45bd0..b741f9bdbd 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 c97befc438..eba274dc9c 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"