-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 783 Bytes
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
[package]
name = "guided_digraph"
version = "0.1.1"
authors = ["Caleb Stanford <cdstanford@ucdavis.edu>"]
edition = "2021"
license = "MIT"
description = "A data structure for incremental live and dead state detection in an abstract transition system"
repository = "https://github.com/cdstanford/gid"
readme = "README.md"
exclude = [
"regex-smt-benchmarks",
"examples",
]
[dependencies]
disjoint-sets = "0.4.2"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3.26"
time = { version = "0.3.14", features = ["formatting", "macros"] }
[lib]
doctest = false
[[bin]]
name = "example_gen"
test = false
[[bin]]
name = "run_all"
test = false
[[bin]]
name = "run_compare"
test = false
[[bin]]
name = "run_example"
test = false