From a87dcad08afb2595a3c4121704e306f9896b4d7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 18:57:38 +0000 Subject: [PATCH] chore(deps): Bump curve25519-dalek from 4.1.1 to 4.1.2 Bumps [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 4.1.1 to 4.1.2. - [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.2) --- updated-dependencies: - dependency-name: curve25519-dalek dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- 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(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7711050bb4..f6e249b64b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1025,9 +1025,9 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "4.1.1" +version = "4.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c" +checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" dependencies = [ "cfg-if 1.0.0", "cpufeatures", diff --git a/account-keys/Cargo.toml b/account-keys/Cargo.toml index 37aaad347f..d9772789a2 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.2", 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 68a599a653..111920b486 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -32,7 +32,7 @@ mc-sgx-core-types = "0.10.1" mc-sgx-dcap-types = "0.10.1" protobuf = "2.27.1" -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.2", 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 0f6f205e59..91f5689561 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.2", default-features = false } diff --git a/core/Cargo.toml b/core/Cargo.toml index 80a3dc5345..3f93667bc3 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.2", 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 21b82562c4..6fb37bf7e1 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.2", 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 82d3439af0..d18c9f63fe 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.2", 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 4548ed7f59..b0dffcf505 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.2", 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 e7d60ee590..06adb00cb2 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.2", 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 8904fb71b3..97b9164726 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.2", 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 e93b2f9f93..2a8bbdf3ee 100644 --- a/fog/distribution/Cargo.toml +++ b/fog/distribution/Cargo.toml @@ -39,7 +39,7 @@ rayon = "1.8" retry = "2.0" tempfile = "3.10" -curve25519-dalek = { version = "4.1.1", default-features = false } +curve25519-dalek = { version = "4.1.2", default-features = false } [dev-dependencies] mc-common = { path = "../../common", features = ["loggers"] } diff --git a/transaction/builder/Cargo.toml b/transaction/builder/Cargo.toml index 02b9f369ab..53263cd53d 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.2", default-features = false } [dev-dependencies] assert_matches = "1.5" diff --git a/transaction/core/Cargo.toml b/transaction/core/Cargo.toml index 5b5dfd9211..a3b15a004e 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.2", 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 3a07ec3c5d..d38fcac171 100644 --- a/transaction/extra/Cargo.toml +++ b/transaction/extra/Cargo.toml @@ -38,7 +38,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.2", default-features = false } [dev-dependencies] assert_matches = "1.5"