Skip to content

Commit

Permalink
Empty zcash_note_encryption crate
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Mar 19, 2021
1 parent 3a8e729 commit b7c31e3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"components/equihash",
"components/zcash_note_encryption",
"zcash_client_backend",
"zcash_client_sqlite",
"zcash_extensions",
Expand Down
13 changes: 13 additions & 0 deletions components/zcash_note_encryption/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
7 changes: 7 additions & 0 deletions components/zcash_note_encryption/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

0 comments on commit b7c31e3

Please sign in to comment.