diff --git a/Cargo.lock b/Cargo.lock index 691085bcbd..2bad5f54e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1059,9 +1059,9 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "4.1.0" +version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622178105f911d937a42cdb140730ba4a3ed2becd8ae6ce39c7d28b5d75d4588" +checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c" dependencies = [ "cfg-if 1.0.0", "cpufeatures", diff --git a/account-keys/Cargo.toml b/account-keys/Cargo.toml index 433943a482..d306e40a27 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", 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 7285c583e1..c7a4a88093 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -32,7 +32,7 @@ mc-sgx-core-types = "0.9.0" mc-sgx-dcap-types = "0.9.0" protobuf = "2.27.1" -curve25519-dalek = { version = "4.1.0", default-features = false } +curve25519-dalek = { version = "4.1.1", 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 8f2bef43d0..f5e67bc296 100644 --- a/consensus/service/Cargo.toml +++ b/consensus/service/Cargo.toml @@ -83,4 +83,4 @@ rand_hc = "0.3" serial_test = "2.0" tempfile = "3.8" -curve25519-dalek = { version = "4.1.0", default-features = false } +curve25519-dalek = { version = "4.1.1", default-features = false } diff --git a/core/Cargo.toml b/core/Cargo.toml index 331d781759..7a1a4bc5fe 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", default-features = false } ed25519-dalek = { version = "2.0.0", default-features = false } generic-array = { version = "0.14.7", default-features = false, features = [ "more_lengths" ] } hkdf = { version = "0.12.3" } diff --git a/core/types/Cargo.toml b/core/types/Cargo.toml index 42c85634c3..dddad605dd 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", default-features = false } prost = { version = "0.12", optional = true, default-features = false } serde = { version = "1.0.190", 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 b0d9732fad..cb5f2d224f 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.0", default-features = false, optional = true } +curve25519-dalek = { version = "4.1.1", default-features = false, optional = true } ed25519-dalek = { version = "2.0.0", default-features = false, optional = true } generic-array = "0.14" diff --git a/crypto/keys/Cargo.toml b/crypto/keys/Cargo.toml index 167dd00881..f7c81ed839 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.0", default-features = false, features = ["rand_core"] } +curve25519-dalek = { version = "4.1.1", default-features = false, features = ["rand_core"] } digest = "0.10" displaydoc = { version = "0.2", default-features = false } ed25519 = { version = "2.2.2", default-features = false } diff --git a/crypto/ring-signature/Cargo.toml b/crypto/ring-signature/Cargo.toml index 5bf44fcce0..91558cfb27 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", 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 fbdaa86da7..e561a75b9e 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", 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 b44dba1e23..a10ce90ef6 100644 --- a/fog/distribution/Cargo.toml +++ b/fog/distribution/Cargo.toml @@ -39,7 +39,7 @@ rayon = "1.7" retry = "2.0" tempfile = "3.8" -curve25519-dalek = { version = "4.1.0", default-features = false } +curve25519-dalek = { version = "4.1.1", default-features = false } [dev-dependencies] mc-common = { path = "../../common", features = ["loggers"] } diff --git a/transaction/builder/Cargo.toml b/transaction/builder/Cargo.toml index b6e3ee4449..0f9588c6ec 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", default-features = false } [dev-dependencies] assert_matches = "1.5" diff --git a/transaction/core/Cargo.toml b/transaction/core/Cargo.toml index b9eecb37f7..96b5f7c030 100644 --- a/transaction/core/Cargo.toml +++ b/transaction/core/Cargo.toml @@ -13,7 +13,7 @@ aes = "0.8.3" 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", 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 8f3347ef59..a79f75c483 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.0", default-features = false } +curve25519-dalek = { version = "4.1.1", default-features = false } [dev-dependencies] assert_matches = "1.5"