From c20139bbf7d312b65b0e58ef7bce345128b27ddd Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Mon, 9 Dec 2019 13:54:10 -0800 Subject: [PATCH] Rename to just `redjubjub`. --- Cargo.toml | 6 +++--- README.md | 4 ++-- tests/bincode.rs | 2 +- tests/librustzcash_vectors.rs | 2 +- tests/proptests.rs | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bd00926..f9d30b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,14 @@ [package] -name = "redjubjub-zebra" +name = "redjubjub" edition = "2018" version = "0.1.0" authors = ["Henry de Valence "] readme = "README.md" license = "MIT OR Apache-2.0" -repository = "https://github.com/ZcashFoundation/redjubjub-zebra" +repository = "https://github.com/ZcashFoundation/redjubjub" categories = ["cryptography", "zcash"] keywords = ["cryptography", "crypto", "jubjub", "redjubjub", "zcash", "zebra"] -description = ["A mostly-standalone implementation of the RedJubjub signature scheme"] +description = "A mostly-standalone implementation of the RedJubjub signature scheme." [package.metadata.docs.rs] features = ["nightly"] diff --git a/README.md b/README.md index d39e738..51b8313 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ signature: ``` # use std::convert::TryFrom; use rand::thread_rng; -use redjubjub_zebra::*; +use redjubjub::*; let msg = b"Hello!"; @@ -48,4 +48,4 @@ cargo doc --features "nightly" --open [redjubjub]: https://zips.z.cash/protocol/protocol.pdf#concretereddsa [zebra]: https://github.com/ZcashFoundation/zebra [refinement]: https://en.wikipedia.org/wiki/Refinement_type -[sealed]: https://rust-lang.github.io/api-guidelines/future-proofing.html#sealed-traits-protect-against-downstream-implementations-c-sealed \ No newline at end of file +[sealed]: https://rust-lang.github.io/api-guidelines/future-proofing.html#sealed-traits-protect-against-downstream-implementations-c-sealed diff --git a/tests/bincode.rs b/tests/bincode.rs index 834a4a6..1094d6f 100644 --- a/tests/bincode.rs +++ b/tests/bincode.rs @@ -2,7 +2,7 @@ use std::convert::TryFrom; use proptest::prelude::*; -use redjubjub_zebra::*; +use redjubjub::*; proptest! { #[test] diff --git a/tests/librustzcash_vectors.rs b/tests/librustzcash_vectors.rs index ff08b29..1cc3632 100644 --- a/tests/librustzcash_vectors.rs +++ b/tests/librustzcash_vectors.rs @@ -3,7 +3,7 @@ use std::convert::TryFrom; #[macro_use] extern crate lazy_static; -use redjubjub_zebra::*; +use redjubjub::*; #[test] fn verify_librustzcash_spendauth() { diff --git a/tests/proptests.rs b/tests/proptests.rs index 2acef84..baaacdc 100644 --- a/tests/proptests.rs +++ b/tests/proptests.rs @@ -3,7 +3,7 @@ use std::convert::TryFrom; use proptest::prelude::*; use rand_core::{CryptoRng, RngCore}; -use redjubjub_zebra::*; +use redjubjub::*; /// A signature test-case, containing signature data and expected validity. #[derive(Clone, Debug)]