semaphore/
lib.rs

1//! Semaphore Rust Implementation
2//!
3//! Protocol specifications:
4//! - <https://github.com/zkspecs/zkspecs/tree/main/specs/3>
5
6pub mod baby_jubjub;
7pub mod error;
8pub mod group;
9pub mod identity;
10pub mod proof;
11pub mod utils;
12pub mod witness;
13
14pub const MIN_TREE_DEPTH: u16 = 1;
15pub const MAX_TREE_DEPTH: u16 = 32;