-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (31 loc) · 1.2 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
[package]
name = "rIC3"
version = "1.1.0"
edition = "2021"
authors = ["Yuheng Su <gipsyh.icu@gmail.com>"]
repository = "https://github.com/gipsyh/rIC3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aig = { path = "./deps/aig-rs", version = "0.2.1" }
satif-minisat = { path = "./deps/minisat-rs", version = "0.2.1" }
cadical = { path = "./deps/cadical-rs", version = "*" }
satif-kissat = { path = "./deps/kissat-rs", version = "0.2.0" }
logic-form = { path = "./deps/logic-form", version = "0.2.0" }
clap = { version = "4.5.16", features = ["derive"] }
rand = "0.8.5"
ctrlc = { version = "3.4.1", features = ["termination"] }
giputils = { path = "./deps/giputils", version = "0.1.0" }
satif = { path = "./deps/satif", version = "0.1.0" }
bitfield-struct = "0.8.0"
abc-rs = { path = "./deps/abc-rs", version = "0.2.1" }
tempfile = "3.10.1"
process_control = "4.1.0"
nix = { version = "0.27.1", features = ["signal"] }
procspawn = "1.0.0"
btor = { path = "./deps/btor-rs", version = "*" }
shadow-rs = "0.34.0"
[build-dependencies]
shadow-rs = "0.34.0"
[features]
default = ["no_bound_check"]
no_bound_check = ["logic-form/no_bound_check", "giputils/no_bound_check"]