From 4b19eac8cef6c93feb0c86363cf06c4b683a4478 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Fri, 9 Feb 2024 03:57:19 +1100 Subject: [PATCH] Remove `curve25519-dalek` patch (#5214) * Remove patch dependencies --- Cargo.lock | 8 +++++--- Cargo.toml | 3 --- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4fc8ef8fe..1082c2fd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1583,8 +1583,9 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "4.1.1" -source = "git+https://github.com/jimmygchen/curve25519-dalek.git?rev=24019783e9bb9dc1464e7e503732f273a69969c6#24019783e9bb9dc1464e7e503732f273a69969c6" +version = "4.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" dependencies = [ "cfg-if", "cpufeatures", @@ -1600,7 +1601,8 @@ dependencies = [ [[package]] name = "curve25519-dalek-derive" version = "0.1.1" -source = "git+https://github.com/jimmygchen/curve25519-dalek.git?rev=24019783e9bb9dc1464e7e503732f273a69969c6#24019783e9bb9dc1464e7e503732f273a69969c6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index ce3b47012..12a747421 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -235,6 +235,3 @@ inherits = "release" lto = "fat" codegen-units = 1 incremental = false - -[patch.crates-io] -curve25519-dalek = { git = "https://github.com/jimmygchen/curve25519-dalek.git", rev = "24019783e9bb9dc1464e7e503732f273a69969c6" }