From 7780dadbb7d78994bd8bf1a64c4f2e60ecf569b3 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 3 Mar 2020 21:11:17 -0800 Subject: [PATCH 1/5] add curve25519-dalek dependency --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 2f76cdc..938baf8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -624,6 +624,7 @@ dependencies = [ "base64 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "criterion 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 85a6c37..696c44e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,6 +24,7 @@ rayon = "1.0" base64 = "0.12" rand_core = { version = "0.5", default-features = false, features = ["getrandom"] } x25519-dalek = "0.6" +curve25519-dalek = "2.0" num_cpus = "1.0" [dev-dependencies] -- 2.36.0