-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (46 loc) · 1.12 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
[package]
name = "bex"
version = "0.2.0"
edition = "2021"
authors = ["tangentstorm <[email protected]>"]
description = "A rust library for working with boolean expressions (syntax trees, decision diagrams, algebraic normal form, etc.)"
documentation = "https://docs.rs/bex/"
repository = "https://github.com/tangentstorm/bex"
keywords = ["bdd", "diagram", "anf"]
categories = ["algorithms", "data-structures"]
license = "MIT"
readme = "README.md"
default-run = "bex-shell"
[lib]
name = "bex"
path = "src/lib.rs"
[[bin]]
name = "bex-shell"
path = "examples/shell/bex-shell.rs"
[[bin]]
name = "swarm-shell"
path = "examples/shell/swarm-shell.rs"
[[bin]]
name = "bdd-solve"
path = "examples/solve/bdd-solve.rs"
[[bin]]
name = "factor-p"
path = "examples/solve/factor-p.rs"
[features]
slowtests = []
[workspace]
members = ["py", "api"]
[dependencies]
log = { version = "0.4", features = ["max_level_debug"]}
simplelog = "0.5"
num_cpus = "1.0"
rand = "0.8.5"
dashmap = { version="5.4.0"}
boxcar = "0.1.0"
fxhash = "0.2.1"
concurrent-queue = "2.1.0"
[dev-dependencies]
bencher = "0.1.5"
[[bench]]
name = "bench-solve"
harness = false