sapling-mpc/Cargo.toml

50 lines
842 B
TOML
Raw Normal View History

2018-04-08 16:30:38 -07:00
[package]
name = "sapling-mpc"
2018-05-17 15:38:56 -07:00
version = "0.2.0"
2018-04-08 16:30:38 -07:00
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
[[bin]]
name = "new"
required-features = ["verification"]
[[bin]]
name = "verify"
required-features = ["verification"]
[[bin]]
name = "beacon"
required-features = ["beacon"]
2018-04-08 16:30:38 -07:00
[[bin]]
name = "compute"
2018-04-10 13:31:12 -07:00
[[bin]]
name = "verify_transform"
[[bin]]
name = "split_params"
2018-04-08 16:30:38 -07:00
[dependencies]
phase2 = "0.2.1"
pairing = "0.14"
rand = "0.4"
blake2-rfc = "0.2"
[dependencies.byteorder]
version = "1"
optional = true
2018-04-08 16:30:38 -07:00
[dependencies.sapling-crypto]
git = "https://github.com/zcash-hackworks/sapling-crypto"
2018-05-17 15:38:56 -07:00
rev = "eb409fa3cf8df215ae8d35f5e385751a0c5ffb85"
2018-04-08 16:30:38 -07:00
optional = true
[dependencies.hex-literal]
version = "0.1"
optional = true
2018-04-08 16:30:38 -07:00
[features]
verification = ["sapling-crypto"]
u128-support = ["pairing/u128-support"]
beacon = ["byteorder", "hex-literal"]