zebra/zebra-chain/Cargo.toml

36 lines
921 B
TOML
Raw Normal View History

[package]
name = "zebra-chain"
version = "0.1.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
[dependencies]
2020-03-30 01:24:24 -07:00
bech32 = "0.7.2"
blake2b_simd = "0.5.10"
2020-03-29 00:36:15 -07:00
blake2s_simd = "0.5.10"
2020-03-05 19:27:42 -08:00
bs58 = { version = "0.3", features = ["check"] }
byteorder = "1.3"
2019-09-24 11:16:41 -07:00
chrono = "0.4"
futures = "0.3"
hex = "0.4"
jubjub = "0.3.0"
lazy_static = "1.4.0"
rand_core = "0.5.1"
ripemd160 = "0.8.0"
secp256k1 = { version = "0.17.2", features = ["serde"] }
serde = { version = "1", features = ["serde_derive"] }
# TODO: update to crates.io version when available, #326
sha2 = {git="https://github.com/RustCrypto/hashes", rev="30b416a", features=["compress"]}
thiserror = "1"
2020-03-13 15:57:23 -07:00
x25519-dalek = "0.6"
# ZF deps
ed25519-zebra = "0.2"
redjubjub = "0.1"
[dev-dependencies]
proptest = "0.9"
proptest-derive = "0.1.0"