-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
67 lines (61 loc) · 1.75 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
61
62
63
64
65
66
67
[workspace]
members = ["cadical-veripb-tracer", "core", "proc"]
exclude = ["rustsat", "maxpre-rs"]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.86"
atty = "0.2.14"
cadical-veripb-tracer = { version = "0.1.0", path = "./cadical-veripb-tracer" }
cfg-if = "1.0.0"
clap = { version = "4.5.15", features = ["derive", "cargo"] }
cpu-time = "1.0.0"
concolor-clap = "0.1.0"
itertools = "0.13.0"
maxpre = { version = "0.2.2", path = "./maxpre-rs", features = ["multiopt"] }
pidgeons = { version = "0.1.0", path = "./rustsat/pidgeons" }
rustsat = { version = "0.5.0", path = "./rustsat", features = [
"multiopt",
"internals",
"proof-logging",
] }
rustsat-cadical = { version = "0.3", path = "./rustsat/cadical", features = [
"v2-0-0",
"pidgeons",
] }
signal-hook = "0.3.17"
scuttle-core = { version = "0.4.0", path = "./core" }
scuttle-proc = { version = "0.2", path = "./proc" }
tempfile = "3.12.0"
termcolor = "1.4.1"
thiserror = "1.0.63"
[package]
name = "scuttle"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "A multi-objective MaxSAT solver."
keywords = ["solver", "multi-objective", "maxsat"]
repository = "https://github.com/chrjabs/scuttle"
readme = "README.md"
[dependencies]
anyhow.workspace = true
atty.workspace = true
cpu-time.workspace = true
clap.workspace = true
concolor-clap.workspace = true
maxpre.workspace = true
pidgeons.workspace = true
rustsat.workspace = true
rustsat-cadical.workspace = true
scuttle-core = { workspace = true, features = ["clap"] }
signal-hook.workspace = true
termcolor.workspace = true
thiserror.workspace = true
[features]
sol-tightening = ["scuttle-core/sol-tightening"]
[profile.release]
lto = true
[profile.profiling]
inherits = "release"
debug = 1