From b7c31e3f54d92f8dc61fcf042c72bebda293f366 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sat, 20 Mar 2021 09:56:20 +1300 Subject: [PATCH] Empty zcash_note_encryption crate --- Cargo.toml | 1 + components/zcash_note_encryption/Cargo.toml | 13 +++++++++++++ components/zcash_note_encryption/src/lib.rs | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 components/zcash_note_encryption/Cargo.toml create mode 100644 components/zcash_note_encryption/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index 9744357eb..846f8c7a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [workspace] members = [ "components/equihash", + "components/zcash_note_encryption", "zcash_client_backend", "zcash_client_sqlite", "zcash_extensions", diff --git a/components/zcash_note_encryption/Cargo.toml b/components/zcash_note_encryption/Cargo.toml new file mode 100644 index 000000000..46e1bec5b --- /dev/null +++ b/components/zcash_note_encryption/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/components/zcash_note_encryption/src/lib.rs b/components/zcash_note_encryption/src/lib.rs new file mode 100644 index 000000000..31e1bb209 --- /dev/null +++ b/components/zcash_note_encryption/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +}