-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
66 lines (57 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "fbas_analyzer"
version = "0.7.4" # remember to also update: readme, html_root_url
authors = ["Martin Florian <martin.florian@hu-berlin.de>", "Charmaine Ndolo <charmaine.ndolo@hu-berlin.de>"]
description = "Library and tools for analyzing FBASs like the Stellar network"
license = "MIT"
repository = "https://github.com/wiberlin/fbas_analyzer"
readme = "README.md"
keywords = ["stellar", "fbas", "quorum", "analysis", "simulation"]
categories = ["command-line-utilities", "science", "simulation"]
edition = "2021"
[[bin]]
name = "fbas_analyzer"
required-features = ["binaries"]
[[bin]]
name = "bulk_fbas_analyzer"
required-features = ["binaries", "bulk-analyzer"]
[[bin]]
name = "qsc_simulator"
required-features = ["binaries", "qsc-simulation"]
[[bin]]
name = "graph_generator"
required-features = ["binaries", "qsc-simulation"]
[[bin]]
name = "bulk_performance_experiment"
required-features = ["binaries", "performance-experiment"]
[features]
default = ["binaries", "bulk-analyzer"]
binaries = ["quicli", "structopt"]
bulk-analyzer = ["csv", "par-map", "sha3", "hex"]
qsc-simulation = ["rand", "bzip2"]
performance-experiment = ["bulk-analyzer", "qsc-simulation"]
[dev-dependencies]
criterion = "0.3"
sha3 = "0.9"
hex = "0.4"
assert_cmd = "2.0"
predicates = "2.0"
[dependencies]
bit-set = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "1.11"
log = "0.4"
pathfinding = "2.2"
itertools = "0.10"
quicli = { version = "0.4", optional = true }
structopt = { version = "0.2", optional = true }
rand = { version = "0.8", optional = true }
bzip2 = { version = "0.4.4", optional = true }
csv = { version = "1.1", optional = true }
par-map = { version = "0.1", optional = true }
sha3 = { version = "0.9", optional = true }
hex = { version = "0.4", optional = true }
[[bench]]
name = "benchmarks"
harness = false