From 261ac20870966c5c1ec87f51aa53e7678d305eec Mon Sep 17 00:00:00 2001 From: jmwample <8297368+jmwample@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:51:43 -0600 Subject: [PATCH] now dependent on published dalek fork for elligator2 --- crates/obfs4/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/obfs4/Cargo.toml b/crates/obfs4/Cargo.toml index f51b863..fc77337 100644 --- a/crates/obfs4/Cargo.toml +++ b/crates/obfs4/Cargo.toml @@ -37,7 +37,6 @@ hkdf = "0.12.3" crypto_secretbox = { version="0.1.1", features=["salsa20", "heapless"]} subtle = "2.5.0" x25519-dalek = { version = "2.0.1", features = ["static_secrets", "getrandom", "reusable_secrets"]} -# x25519-dalek = { version = "2.0.1", features = ["static_secrets", "getrandom", "reusable_secrets", "elligator2"], git = "https://github.com/jmwample/curve25519-dalek.git", branch = "interim-crate"} ## Utils hex = "0.4.3" @@ -66,7 +65,7 @@ thiserror = "1.0.56" ## transitive dependencies that break things when versions are too low ## i.e. any lower than the exact versions here. curve25519-dalek = { version="4.1", optional=true} -curve25519-elligator2 = { version="0.1.0-alpha.0", features=["elligator2"], git = "https://github.com/jmwample/curve25519-dalek.git", branch = "interim-crate"} # path = "../../../../dalek-crypto/curve25519-dalek/curve25519-elligator2"} # , +curve25519-elligator2 = { version="0.1.0-alpha.1", features=["elligator2"] } anyhow = { version="1.0.20", optional=true} async-trait = { version="0.1.9", optional=true}