forked from egraphs-good/egg
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
60 lines (52 loc) · 1.41 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
[package]
authors = ["Max Willsey <[email protected]>"]
categories = ["data-structures"]
description = "An implementation of egraphs"
edition = "2018"
keywords = ["e-graphs"]
license = "MIT"
name = "egg"
readme = "README.md"
repository = "https://github.com/egraphs-good/egg"
version = "0.9.5"
[dependencies]
env_logger = { version = "0.9.0", default-features = false }
fxhash = "0.2.1"
hashbrown = "0.12.1"
indexmap = "1.8.1"
quanta = "0.12"
log = "0.4.17"
smallvec = { version = "1.8.0", features = ["union", "const_generics"] }
symbol_table = { version = "0.2.0", features = ["global"] }
symbolic_expressions = "5.0.3"
thiserror = "1.0.31"
num-bigint = "0.4"
num-traits = "0.2"
# for the lp feature
coin_cbc = { version = "0.1.6", optional = true }
# for the serde-1 feature
serde = { version = "1.0.137", features = ["derive"], optional = true }
vectorize = { version = "0.2.0", optional = true }
# for the reports feature
serde_json = { version = "1.0.81", optional = true }
saturating = "0.1.0"
[dev-dependencies]
ordered-float = "3.0.0"
[features]
# forces the use of indexmaps over hashmaps
deterministic = []
lp = ["coin_cbc"]
reports = ["serde-1", "serde_json"]
serde-1 = [
"serde",
"indexmap/serde-1",
"hashbrown/serde",
"symbol_table/serde",
"vectorize",
]
wasm-bindgen = []
# private features for testing
test-explanations = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]