Merge pull request #17 from ZcashFoundation/rename
Rename to just `redjubjub`.
This commit is contained in:
commit
5be929559b
|
@ -1,14 +1,14 @@
|
|||
[package]
|
||||
name = "redjubjub-zebra"
|
||||
name = "redjubjub"
|
||||
edition = "2018"
|
||||
version = "0.1.0"
|
||||
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
|
||||
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"]
|
||||
|
|
|
@ -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
|
||||
[sealed]: https://rust-lang.github.io/api-guidelines/future-proofing.html#sealed-traits-protect-against-downstream-implementations-c-sealed
|
||||
|
|
|
@ -2,7 +2,7 @@ use std::convert::TryFrom;
|
|||
|
||||
use proptest::prelude::*;
|
||||
|
||||
use redjubjub_zebra::*;
|
||||
use redjubjub::*;
|
||||
|
||||
proptest! {
|
||||
#[test]
|
||||
|
|
|
@ -3,7 +3,7 @@ use std::convert::TryFrom;
|
|||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
||||
use redjubjub_zebra::*;
|
||||
use redjubjub::*;
|
||||
|
||||
#[test]
|
||||
fn verify_librustzcash_spendauth() {
|
||||
|
|
|
@ -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)]
|
||||
|
|
Loading…
Reference in New Issue