[package] name = "snarkos-polycommit" version = "1.1.4" authors = [ "Alessandro Chiesa ", "Mary Maller ", "Yuncong Hu ", "William Lin", "Pratyush Mishra ", "Noah Vesely ", "Nicholas Ward ", "The Aleo Team ", ] description = "A library for constructing polynomial commitment schemes for use in zkSNARKs" repository = "https://github.com/AleoHQ/snarkOS" keywords = ["aleo", "cryptography", "blockchain", "decentralized", "zero-knowledge"] categories = ["cryptography::cryptocurrencies", "operating-systems"] include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] license = "GPL-3.0" edition = "2018" [dependencies] snarkos-algorithms = { path = "../algorithms", version = "1.1.4"} snarkos-errors = { path = "../errors", version = "1.1.4"} snarkos-models = { path = "../models", version = "1.1.4"} snarkos-profiler = { path = "../profiler", version = "1.1.4"} snarkos-utilities = { path = "../utilities", version = "1.1.4"} derivative = { version = "2", features = [ "use_core" ] } digest = { version = "0.8" } rand_core = { version = "0.5", default-features = false } rayon = { version = "1", optional = true } [dev-dependencies] snarkos-curves = { path = "../curves" } blake2 = { version = "0.8", default-features = false } rand = { version = "0.7", default-features = false } [features] default = ["std"] std = []