[package] name = "spawn-zk-snarks" version = "0.1.3" authors = ["nzengi "] edition = "2021" description = "zk-snarks in rust" license = "MIT" repository = "https://github.com/nzengi/spawn-zk-snarks" documentation = "https://docs.rs/zk-snarks" homepage = "https://github.com/nzengi/spawn-zk-snarks" readme = "README.md" keywords = ["WASM", "zk", "blockchain", "WebAssembly", "Rust"] categories = ["cryptography", "web-programming"] [lib] crate-type = ["cdylib"] # For WebAssembly or C-compatible dynamic library. [dependencies] sha2 = "0.10" # SHA-256 hash function. rand = "0.8" # Random number generation. [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] # Allows custom documentation when built on docs.rs. all-features = true no-default-features = false