-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (33 loc) · 945 Bytes
/
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
[package]
name = "drsat"
description = "SAT solver"
version = "0.1.0"
authors = ["Daniel Schemmel <[email protected]>"]
rust-version = "1.56.0"
edition = "2021"
build = "build.rs"
default-run = "drsat"
[lib]
name = "libdrsat"
[profile.release]
opt-level = 3
codegen-units = 1
lto = true # enabling this significantly increases compile time, but also seems to yield a > 10% speedup
# check .cargo/config, which also contains the following:
# [build]
# rustflags = ["-C", "target-cpu=native"]
[features]
default = []
small_variable_ids = []
aggressive = [ "small_variable_ids" ]
[build-dependencies]
build-info-build = { version = "0.0.31"}
[dependencies]
build-info = { version = "0.0.31"}
bzip2 = { version = "0.4.3" }
clap = { version = "4.0.10", features = ["derive"] }
clap_complete = { version = "4.0.2" }
error-chain = { version = "0.12.4" }
flate2 = { version = "1.0.24" }
xz2 = { version = "0.1.7" }
zstd = { version = "0.12" }