librustzcash/Cargo.toml

34 lines
653 B
TOML
Raw Normal View History

2017-03-17 10:07:23 -07:00
[package]
name = "librustzcash"
version = "0.1.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
]
2017-03-17 10:07:23 -07:00
[lib]
name = "rustzcash"
path = "src/rustzcash.rs"
crate-type = ["staticlib"]
[dependencies]
libc = "0.2"
pairing = "0.14.2"
lazy_static = "1"
2018-04-17 13:16:14 -07:00
bellman = "0.1"
byteorder = "1"
rand = "0.4"
2018-04-09 17:28:42 -07:00
[dependencies.blake2-rfc]
git = "https://github.com/gtank/blake2-rfc"
rev = "7a5b5fc99ae483a0043db7547fb79a6fa44b88a9"
2018-04-09 17:28:42 -07:00
[dependencies.sapling-crypto]
git = "https://github.com/zcash-hackworks/sapling-crypto"
2018-05-18 11:47:35 -07:00
rev = "6abfcca25ae233922ecc18a4d2d0b5cb7aab7c8c"
[profile.release]
lto = true
panic = 'abort'
codegen-units = 1