mirror of
https://github.com/arnaucube/plonky2-semaphore.git
synced 2026-01-15 18:21:29 +01:00
First commit
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/target
|
||||||
|
Cargo.lock
|
||||||
9
Cargo.toml
Normal file
9
Cargo.toml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
[package]
|
||||||
|
name = "plonky2-semaphore"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
plonky2 = {git = "https://github.com/mir-protocol/plonky2"}
|
||||||
3
README.md
Normal file
3
README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Plonky2 implementation of the [Semaphore protocol](http://semaphore.appliedzkp.org/)
|
||||||
|
|
||||||
|
Used as an example in the ZKHack Plonky2 presentation.
|
||||||
1
src/lib.rs
Normal file
1
src/lib.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
pub mod semaphore;
|
||||||
1
src/semaphore.rs
Normal file
1
src/semaphore.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
Reference in New Issue
Block a user