commit 9f60f56c2a7cf41bf6f1eec180f64e77b3373115 Author: Jack Grigg Date: Sat Mar 20 09:56:20 2021 +1300 Empty zcash_note_encryption crate Extracted from: https://github.com/zcash/librustzcash/commit/b7c31e3f54d92f8dc61fcf042c72bebda293f366 diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..46e1bec --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "zcash_note_encryption" +description = "TBD" +version = "0.0.0" +authors = [ + "Jack Grigg ", +] +homepage = "https://github.com/zcash/librustzcash" +repository = "https://github.com/zcash/librustzcash" +license = "MIT OR Apache-2.0" +edition = "2018" + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..31e1bb2 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +}