Empty equihash crate

This commit is contained in:
Jack Grigg 2020-06-26 12:53:07 +12:00
parent 7134ab8215
commit d71a599191
3 changed files with 19 additions and 0 deletions

View File

@ -1,6 +1,7 @@
[workspace]
members = [
"bellman",
"components/equihash",
"ff",
"group",
"pairing",

View File

@ -0,0 +1,11 @@
[package]
name = "equihash"
description = "The Equihash Proof-of-Work function"
version = "0.0.0"
authors = ["Jack Grigg <jack@z.cash>"]
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);
}
}