mirror of
https://github.com/vacp2p/zerokit.git
synced 2025-01-09 05:52:19 +00:00
Initializes the private settlement package (#60)
* initializes the private settlement crate * adds private settlement to the main cargo.toml
This commit is contained in:
parent
1df6c53ca0
commit
5d429ca031
@ -1,6 +1,7 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"multiplier",
|
"multiplier",
|
||||||
|
"private-settlement",
|
||||||
"semaphore",
|
"semaphore",
|
||||||
"rln",
|
"rln",
|
||||||
"rln-wasm",
|
"rln-wasm",
|
||||||
|
8
private-settlement/Cargo.toml
Normal file
8
private-settlement/Cargo.toml
Normal 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]
|
4
private-settlement/README.md
Normal file
4
private-settlement/README.md
Normal 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.
|
||||||
|
|
8
private-settlement/src/lib.rs
Normal file
8
private-settlement/src/lib.rs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
let result = 2 + 2;
|
||||||
|
assert_eq!(result, 4);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user