Initializes the private settlement package (#60)

* initializes the private settlement crate

* adds private settlement to the main cargo.toml
This commit is contained in:
Sanaz Taheri Boshrooyeh 2022-10-06 13:44:16 -07:00 committed by GitHub
parent 1df6c53ca0
commit 5d429ca031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 0 deletions

View File

@ -1,6 +1,7 @@
[workspace]
members = [
"multiplier",
"private-settlement",
"semaphore",
"rln",
"rln-wasm",

View File

@ -0,0 +1,8 @@
[package]
name = "private-settlement"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,4 @@
# Private Settlement Module
This module is to provide APIs to manage, compute and verify [Private Settlement](https://rfc.vac.dev/spec/44/) zkSNARK proofs and primitives.

View File

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