Empty zcash_note_encryption crate

This commit is contained in:
Jack Grigg 2021-03-20 09:56:20 +13:00
parent 3a8e72936f
commit b7c31e3f54
3 changed files with 21 additions and 0 deletions

View File

@ -1,6 +1,7 @@
[workspace]
members = [
"components/equihash",
"components/zcash_note_encryption",
"zcash_client_backend",
"zcash_client_sqlite",
"zcash_extensions",

View File

@ -0,0 +1,13 @@
[package]
name = "zcash_note_encryption"
description = "TBD"
version = "0.0.0"
authors = [
"Jack Grigg <jack@electriccoin.co>",
]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]

View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}