-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
36 lines (31 loc) · 1.88 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["OxiDD Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/OxiDD/oxidd"
homepage = "https://oxidd.net"
[workspace.dependencies]
arcslab = { version = "0.1", path = "crates/arcslab", default-features = false }
hugealloc = { version = "0.1", path = "crates/hugealloc", default-features = false }
linear-hashtbl = { version = "0.1", path = "crates/linear-hashtbl", default-features = false }
oxidd = { version = "0.9", path = "crates/oxidd", default-features = false }
oxidd-cache = { version = "0.9", path = "crates/oxidd-cache", default-features = false }
oxidd-core = { version = "0.9", path = "crates/oxidd-core", default-features = false }
oxidd-derive = { version = "0.9", path = "crates/oxidd-derive", default-features = false }
oxidd-dump = { version = "0.4", path = "crates/oxidd-dump", default-features = false }
oxidd-manager-index = { version = "0.9", path = "crates/oxidd-manager-index", default-features = false }
oxidd-manager-pointer = { version = "0.4", path = "crates/oxidd-manager-pointer", default-features = false }
oxidd-parser = { version = "0.3", path = "crates/oxidd-parser", default-features = false }
oxidd-reorder = { version = "0.4", path = "crates/oxidd-reorder", default-features = false }
oxidd-rules-bdd = { version = "0.9", path = "crates/oxidd-rules-bdd", default-features = false }
oxidd-rules-mtbdd = { version = "0.4", path = "crates/oxidd-rules-mtbdd", default-features = false }
oxidd-rules-tdd = { version = "0.4", path = "crates/oxidd-rules-tdd", default-features = false }
oxidd-rules-zbdd = { version = "0.9", path = "crates/oxidd-rules-zbdd", default-features = false }
oxidd-test-utils = { version = "0.4", path = "crates/oxidd-test-utils", default-features = false }
[profile.release]
panic = "abort"
[profile.release-with-debug]
inherits = "release"
debug = true