84 lines
2.3 KiB
TOML
84 lines
2.3 KiB
TOML
[package]
|
|
name = "zebra-chain"
|
|
version = "1.0.0-beta.0"
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = []
|
|
proptest-impl = ["proptest", "proptest-derive", "itertools", "zebra-test", "rand", "rand_chacha"]
|
|
bench = ["zebra-test"]
|
|
|
|
[dependencies]
|
|
aes = "0.6"
|
|
bech32 = "0.8.1"
|
|
bigint = "4.4.3"
|
|
bitflags = "1.2.1"
|
|
bitvec = "0.22"
|
|
blake2b_simd = "0.5.11"
|
|
blake2s_simd = "0.5.11"
|
|
bls12_381 = "0.5.0"
|
|
bs58 = { version = "0.4", features = ["check"] }
|
|
byteorder = "1.4"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
displaydoc = "0.2.2"
|
|
fpe = "0.4"
|
|
futures = "0.3"
|
|
group = "0.11"
|
|
halo2 = "=0.1.0-beta.1"
|
|
hex = "0.4"
|
|
incrementalmerkletree = "0.1.0"
|
|
jubjub = "0.7.0"
|
|
lazy_static = "1.4.0"
|
|
rand_core = "0.6"
|
|
ripemd160 = "0.9"
|
|
secp256k1 = { version = "0.20.3", features = ["serde"] }
|
|
serde = { version = "1", features = ["serde_derive", "rc"] }
|
|
serde-big-array = "0.3.2"
|
|
sha2 = { version = "0.9.8", features=["compress"] }
|
|
subtle = "2.4"
|
|
thiserror = "1"
|
|
uint = "0.9.1"
|
|
x25519-dalek = { version = "1.1", features = ["serde"] }
|
|
zcash_history = { git = "https://github.com/zcash/librustzcash.git", rev = "53d0a51d33a421cb76d3e3124d1e4c1c9036068e" }
|
|
zcash_primitives = { git = "https://github.com/zcash/librustzcash.git", rev = "53d0a51d33a421cb76d3e3124d1e4c1c9036068e" }
|
|
|
|
proptest = { version = "0.10", optional = true }
|
|
proptest-derive = { version = "0.3.0", optional = true }
|
|
itertools = { version = "0.10.1", optional = true }
|
|
rand = { version = "0.8", optional = true }
|
|
rand_chacha = { version = "0.3", optional = true }
|
|
|
|
# ZF deps
|
|
ed25519-zebra = "3.0.0"
|
|
equihash = "0.1"
|
|
# TODO: Update to 0.5 release when published
|
|
redjubjub = { git = "https://github.com/ZcashFoundation/redjubjub.git", rev = "f772176560b0b7daf25eff2460e08dc127ac8407" }
|
|
|
|
zebra-test = { path = "../zebra-test/", optional = true }
|
|
|
|
[dev-dependencies]
|
|
color-eyre = "0.5.11"
|
|
criterion = { version = "0.3", features = ["html_reports"] }
|
|
itertools = "0.10.1"
|
|
spandoc = "0.2"
|
|
tracing = "0.1.29"
|
|
|
|
proptest = "0.10"
|
|
proptest-derive = "0.3"
|
|
rand = "0.8"
|
|
rand_chacha = "0.3"
|
|
|
|
zebra-test = { path = "../zebra-test/" }
|
|
|
|
[[bench]]
|
|
name = "block"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "redpallas"
|
|
harness = false
|