orchard/Cargo.toml

31 lines
652 B
TOML
Raw Normal View History

2020-10-20 14:12:37 -07:00
[package]
2021-01-08 08:32:36 -08:00
name = "orchard"
2020-10-20 14:12:37 -07:00
version = "0.0.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
2020-10-20 15:03:33 -07:00
"Jack Grigg <jack@electriccoin.co>",
2020-10-20 14:12:37 -07:00
]
edition = "2018"
2020-10-20 14:36:48 -07:00
description = "Sapling on stilts!"
2020-10-20 14:12:51 -07:00
license = "TGPPL"
2021-01-08 08:32:36 -08:00
repository = "https://github.com/zcash/orchard"
documentation = "https://docs.rs/orchard"
2020-10-20 14:12:37 -07:00
readme = "README.md"
2020-10-20 14:12:51 -07:00
# We can't publish to crates.io under TGPPL yet.
publish = false
2020-10-20 14:12:37 -07:00
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
2020-10-20 15:18:25 -07:00
2020-10-20 15:18:40 -07:00
[dependencies]
2021-02-24 15:04:43 -08:00
group = "0.9"
2020-10-20 15:18:40 -07:00
halo2 = { git = "https://github.com/zcash/halo2.git", branch = "main" }
nonempty = "0.6"
2020-10-20 15:18:40 -07:00
2020-10-20 15:18:25 -07:00
[dev-dependencies]
criterion = "0.3"
[lib]
bench = false