mpc/Cargo.toml

55 lines
870 B
TOML
Raw Normal View History

2016-08-01 17:48:33 -07:00
[package]
name = "mpc"
version = "0.0.1"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Ariel Gabizon <ariel@z.cash>",
"Matthew Green <mgreen@cs.jhu.edu>"
]
license = "MIT OR Apache-2.0"
readme = "README.md"
2016-09-15 15:50:20 -07:00
[[bin]]
name = "coordinator"
path = "src/coordinator.rs"
# avoid duplicate tests
test = false
2016-09-16 16:11:46 -07:00
[[bin]]
name = "verifier"
path = "src/verifier.rs"
# avoid duplicate tests
test = false
2016-09-17 13:48:08 -07:00
[[bin]]
name = "simulator"
path = "src/simulator.rs"
# avoid duplicate tests
test = false
2016-09-15 15:50:20 -07:00
[[bin]]
name = "player"
path = "src/player.rs"
[features]
default = ["snark"]
[dependencies.snark]
path = "./snark/"
optional = true
2016-08-01 17:48:33 -07:00
[dependencies]
2016-09-15 07:43:45 -07:00
bn = "0.3.0"
2016-08-06 10:32:31 -07:00
crossbeam = "0.2.9"
rand = "0.3.14"
rustc-serialize = "~0.3.19"
2016-09-15 15:50:20 -07:00
log = "*"
env_logger = "*"
time = "*"
ansi_term = "*"
[dependencies.bincode]
version = "0.6.0"
default-features = false
features = ["rustc-serialize"]