-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
30 lines (27 loc) · 830 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
[package]
name = "findminhs"
version = "2.1.0"
authors = ["David Stangl <[email protected]>"]
edition = "2021"
license = "MIT"
description = "An efficient branch-and-bound solver for hitting set"
homepage = "https://github.com/Felerius/findminhs"
repository = "https://github.com/Felerius/findminhs"
documentation = "https://github.com/Felerius/findminhs"
readme = "README.md"
categories = ["command-line-utilities", "science"]
keywords = ["hitting-set", "solver", "research"]
exclude = ["evaluation/*"]
[features]
debug-skipvec = []
[dependencies]
anyhow = "1.0"
derivative = "2.1"
env_logger = "0.9"
log = { version = "0.4", features = ["max_level_debug", "release_max_level_info"] }
rustc-hash = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3"
[profile.release]
lto = true