[package]
edition = "2021"
rust-version = "1.77.0"
name = "rustsat-tools"
version = "0.7.5"
authors = ["Christoph Jabs <christoph.jabs@helsinki.fi>"]
build = false
include = [
"LICENSE",
"CHANGELOG.md",
"README.md",
"/src/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tools and examples built on the RustSAT library"
readme = "README.md"
keywords = [
"rustsat",
"sat",
"satisfiability",
]
license = "MIT"
repository = "https://github.com/chrjabs/rustsat"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
cargo-args = [
"-Zunstable-options",
"-Zrustdoc-scrape-examples",
]
[features]
_test = []
cadical = ["dep:rustsat-cadical"]
default = ["minisat"]
minisat = ["dep:rustsat-minisat"]
[lib]
name = "rustsat_tools"
path = "src/lib.rs"
[[bin]]
name = "check-solution"
path = "src/bin/check-solution.rs"
[[bin]]
name = "cnf2opb"
path = "src/bin/cnf2opb.rs"
[[bin]]
name = "encodings"
path = "src/bin/encodings.rs"
[[bin]]
name = "enumerator"
path = "src/bin/enumerator.rs"
[[bin]]
name = "gbmosplit"
path = "src/bin/gbmosplit.rs"
[[bin]]
name = "mcnf2opb"
path = "src/bin/mcnf2opb.rs"
[[bin]]
name = "mo2ilp"
path = "src/bin/mo2ilp.rs"
[[bin]]
name = "opb2cnf"
path = "src/bin/opb2cnf.rs"
[[bin]]
name = "opb2mcnf"
path = "src/bin/opb2mcnf.rs"
[[bin]]
name = "opb2wcnf"
path = "src/bin/opb2wcnf.rs"
[[bin]]
name = "propagator"
path = "src/bin/propagator.rs"
[[bin]]
name = "shuffledimacs"
path = "src/bin/shuffledimacs.rs"
[[bin]]
name = "wcnf2opb"
path = "src/bin/wcnf2opb.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.clap]
version = "4.5.54"
features = [
"derive",
"cargo",
]
[dependencies.concolor-clap]
version = "0.1.0"
[dependencies.itertools]
version = "0.14.0"
[dependencies.nom]
version = "7.1.3"
[dependencies.rand]
version = "0.9.2"
[dependencies.rand_chacha]
version = "0.9.0"
[dependencies.rustsat]
version = "0.7.5"
features = [
"compression",
"multiopt",
"rand",
"_internals",
]
default-features = false
[dependencies.rustsat-cadical]
version = "0.7.5"
optional = true
[dependencies.rustsat-minisat]
version = "0.7.5"
optional = true
[dependencies.termcolor]
version = "1.4.1"