Fix failing cargo-udeps (#5203)

* Attempt to fix nightly build.

* Update Cargo.toml to pin a commit

* Update Cargo.lock
This commit is contained in:
Jimmy Chen 2024-02-06 18:23:57 +11:00 committed by GitHub
parent 4b62a024d7
commit 5cc29e47c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

6
Cargo.lock generated
View File

@ -1584,8 +1584,7 @@ dependencies = [
[[package]]
name = "curve25519-dalek"
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
source = "git+https://github.com/jimmygchen/curve25519-dalek.git?rev=24019783e9bb9dc1464e7e503732f273a69969c6#24019783e9bb9dc1464e7e503732f273a69969c6"
dependencies = [
"cfg-if",
"cpufeatures",
@ -1601,8 +1600,7 @@ dependencies = [
[[package]]
name = "curve25519-dalek-derive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
source = "git+https://github.com/jimmygchen/curve25519-dalek.git?rev=24019783e9bb9dc1464e7e503732f273a69969c6#24019783e9bb9dc1464e7e503732f273a69969c6"
dependencies = [
"proc-macro2",
"quote",

View File

@ -235,3 +235,6 @@ inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[patch.crates-io]
curve25519-dalek = { git = "https://github.com/jimmygchen/curve25519-dalek.git", rev = "24019783e9bb9dc1464e7e503732f273a69969c6" }