[package] name = "plonky2_monolith" version = "0.1.0" description = "Use Monolith hash to generate Plonky2 proofs and to write Plonky2 circuits" edition = "2021" license-file = "LICENSE-APACHE" readme = "README.md" authors = ["Markus Schofnegger", "Nicholas Mainardi"] keywords = ["cryptography", "PLONK", "hash", "zero_knowledge"] categories = ["cryptography"] repository = "https://github.com/HorizenLabs/monolith" exclude = ["ci/*", ".travis.yml", ".cargo/*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.75" itertools = "0.11.0" plonky2 = {version = "0.1.4", default-features = true} rand_chacha = "0.3.1" serde = "1.0.188" unroll = "0.1.5" [features] default = ["default-sponge-params"] default-sponge-params = [] [dev-dependencies] log = "0.4.20" rstest = "0.18.2" serial_test = "2.0.0" env_logger = "0.10.0" criterion = "0.5.1" tynm = "0.1.8" [target.'cfg(not(target_env = "msvc"))'.dev-dependencies] jemallocator = "0.5.0" [[bench]] name = "hashing" harness = false [[bench]] name = "merkle" harness = false [[bench]] name = "base_proof" harness = false [[bench]] name = "recursion" harness = false