[package] name = "orchard" version = "0.0.0" authors = [ "Sean Bowe ", "Jack Grigg ", ] edition = "2018" description = "Sapling on stilts!" license-file = "LICENSE-BOSL" repository = "https://github.com/zcash/orchard" documentation = "https://docs.rs/orchard" readme = "README.md" # We are not publishing this yet. publish = false [package.metadata.docs.rs] rustdoc-args = [ "--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.2.1" proptest = { version = "1.0.0", optional = true } rand = "0.8" reddsa = "0.1" 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", 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 [profile.release] debug = true [profile.bench] debug = true