-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (47 loc) · 1.4 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "fbas-reward-distributor"
version = "0.1.0"
edition = "2021"
authors = ["Charmaine Ndolo <[email protected]>"]
license = "MIT"
readme = "./README.md"
keywords = ["stellar", "fbas", "mobilecoin", "centrality", "blockchain", "shapley-value"]
categories = ["command-line-utilities", "science", "ranking"]
default-run = "reward_distributor"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "reward_distributor"
path = "src/bin/node_influence.rs"
required-features = ["cli"]
[[bin]]
name = "performance_tests"
path = "src/bin/batch_performance_eval.rs"
required-features = ["measurements"]
[[bin]]
name = "approximation_tests"
path = "src/bin/batch_error_eval.rs"
required-features = ["measurements"]
[features]
default = ["cli"]
cli = ["structopt"]
batch = ["par-map", "lazy_static"]
measurements = ["cli", "batch"]
[dependencies]
fbas_analyzer = { version = "0.7", default-features = false, features = ["qsc-simulation"]}
hex = "0.4.3"
structopt = {version = "0.3.26", optional = true}
sha3 = "0.10.0"
bit-set = "0.5.2"
itertools = "0.12.0"
rug = "1.15.0"
rand = "0.8.5"
csv = "1.1"
par-map = { version = "0.1", optional = true }
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
env_logger ="0.11"
lazy_static = {version = "1.4.0", optional = true}
[dev-dependencies]
approx = "0.5.1"
assert_cmd = "2.0.4"
predicates = "3.0.3"