[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.6" arrayvec = "0.7.0" bigint = "4" bitvec = "0.22" blake2b_simd = "0.5" ff = "0.10" fpe = "0.4" group = "0.10" halo2 = "0.0" lazy_static = "1" pasta_curves = "0.1" proptest = { version = "1.0.0", optional = true } rand = "0.8" nonempty = "0.7" serde = { version = "1.0", features = ["derive"] } subtle = "2.3" zcash_note_encryption = "0.0" incrementalmerkletree = "0.1" # Developer tooling dependencies plotters = { version = "0.3.0", optional = true } [dependencies.reddsa] git = "https://github.com/str4d/redjubjub.git" rev = "d5d8c5f3bb704bad8ae88fe4a29ae1f744774cb2" [dev-dependencies] criterion = "0.3" hex = "0.4" proptest = "1.0.0" [target.'cfg(unix)'.dev-dependencies] pprof = { version = "0.4.2", features = ["criterion", "flamegraph"] } [lib] bench = false [features] dev-graph = ["halo2/dev-graph", "plotters"] test-dependencies = ["proptest"] [[bench]] name = "small" harness = false [[bench]] name = "circuit" harness = false [profile.release] debug = true [profile.bench] debug = true [patch.crates-io] halo2 = { git = "https://github.com/zcash/halo2.git", rev = "27c4187673a9c6ade13fbdbd4f20955530c22d7f" } zcash_note_encryption = { git = "https://github.com/zcash/librustzcash.git", rev = "cc533a9da4f6a7209a7be05f82b12a03969152c9" } incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "b7bd6246122a6e9ace8edb51553fbf5228906cbb" }