[package] name = "orchard" version = "0.1.0-beta.1" authors = [ "Sean Bowe ", "Jack Grigg ", "Daira Hopwood ", "Ying Tong Lai ", "Kris Nuttycombe ", ] edition = "2018" description = "[BETA] The Orchard shielded transaction protocol" license-file = "LICENSE-BOSL" repository = "https://github.com/zcash/orchard" documentation = "https://docs.rs/orchard" readme = "README.md" categories = ["cryptography::cryptocurrencies"] keywords = ["zcash"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"] [dependencies] aes = "0.7" arrayvec = "0.7.0" bigint = "4" bitvec = "0.22" blake2b_simd = "1" ff = "0.11" fpe = "0.5" group = "0.11" halo2 = "=0.1.0-beta.1" lazy_static = "1" memuse = { version = "0.2", features = ["nonempty"] } pasta_curves = "0.3" proptest = { version = "1.0.0", optional = true } rand = "0.8" reddsa = "0.2" nonempty = "0.7" serde = { version = "1.0", features = ["derive"] } subtle = "2.3" zcash_note_encryption = "0.1" incrementalmerkletree = "0.2" # Developer tooling dependencies plotters = { version = "0.3.0", optional = true } [dev-dependencies] criterion = "0.3" hex = "0.4" proptest = "1.0.0" zcash_note_encryption = { version = "0.1", features = ["pre-zip-212"] } [target.'cfg(unix)'.dev-dependencies] pprof = { version = "=0.6.1", features = ["criterion", "flamegraph"] } [lib] bench = false [features] dev-graph = ["halo2/dev-graph", "plotters"] test-dependencies = ["proptest"] [[bench]] name = "note_decryption" harness = false [[bench]] name = "primitives" harness = false [[bench]] name = "small" harness = false [[bench]] name = "circuit" harness = false [[bench]] name = "poseidon" harness = false [profile.release] debug = true [profile.bench] debug = true [patch.crates-io] # halo2_proofs = { git = "https://github.com/zcash/halo2.git", branch = "halo2_gadgets-import" } # halo2_gadgets = { git = "https://github.com/zcash/halo2.git", branch = "halo2_gadgets-import" }