-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
82 lines (69 loc) · 1.66 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "reveaal"
version = "0.1.0"
build = "src/build.rs"
authors = ["Thomas Lohse", "Sebastian Lund", "Thorulf Neustrup", "Peter Greve"]
edition = "2018"
[lib]
name = "reveaal"
path = "src/lib.rs"
[[bin]]
name = "Reveaal"
path = "src/main.rs"
[features]
default = ["logging"]
logging = ["dep:env_logger", "dep:chrono"]
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.2.1", features = [ "derive" ] }
pest = "2.5.6"
pest_derive = "2.5.6"
xml-rs = "0.8.3"
serde-xml-rs = "0.6.0"
elementtree = "1.2.2"
dyn-clone = "1.0"
tonic = "0.8.3"
prost = "0.11.0"
tokio = { version = "1.0", features = ["macros", "rt"] }
colored = "2.0.0"
simple-error = "0.2.3"
force_graph = "0.3.2"
rand = "0.8.5"
futures = "0.3.21"
edbm = { git = "https://github.com/Ecdar/EDBM" }
log = "0.4.17"
env_logger = { version = "0.9.0", optional = true }
chrono = { version = "0.4.22", optional = true }
test-case = "2.2.2"
num_cpus = "1.13.1"
lru = "0.8.1"
itertools = "0.10.5"
regex = "1"
rayon = "1.6.1"
lazy_static = "1.4.0"
# Enable optimizations for EDBM in debug mode, but not for our code:
[profile.dev.package.edbm]
opt-level = 3
[build-dependencies]
tonic-build = "0.8.2"
[dev-dependencies]
test-case = "2.2.2"
criterion = { version = "0.4.0", features = ["async_futures"] }
[target.'cfg(unix)'.dev-dependencies]
pprof = { version = "0.10.1", features = ["flamegraph"] }
[[bench]]
name = "refinement_bench"
harness = false
[[bench]]
name = "reachability_bench"
harness = false
[[bench]]
name = "threadpool_bench"
harness = false
[[bench]]
name = "clock_reduction_bench"
harness = false
[[bench]]
name = "simulation_bench"
harness = false