Skip to content

Commit

Permalink
Merge pull request privacy-scaling-explorations#42 from appliedzkp/in…
Browse files Browse the repository at this point in the history
…it-keccak-project

add keccak256 dir
  • Loading branch information
ChihChengLiang authored Aug 24, 2021
2 parents fa02d32 + af0a7b7 commit 53736d1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[workspace]
members = [
"zkevm-circuits",
"bus-mapping"
"bus-mapping",
"keccak256"
]

[patch.crates-io]
Expand Down
7 changes: 7 additions & 0 deletions keccak256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "keccak256"
version = "0.1.0"
edition = "2018"

[dependencies]
halo2 = "0.0"
4 changes: 4 additions & 0 deletions keccak256/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#[allow(dead_code)]
fn main() {
println!("Hello, world!");
}

0 comments on commit 53736d1

Please sign in to comment.