sat-solvers 0.1.1

Unified interface to multiple SAT solvers (CaDiCaL, MiniSat, Glucose, Lingeling, Kissat) with automatic source compilation
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "sat-solvers"
version = "0.1.1"
authors = ["Alex Jackson <mail@alexjackson.uk>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified interface to multiple SAT solvers (CaDiCaL, MiniSat, Glucose, Lingeling, Kissat) with automatic source compilation"
homepage = "https://github.com/alexjackson1/sat-solvers"
readme = "README.md"
keywords = [
    "sat",
    "solver",
    "cnf",
    "dimacs",
    "satisfiability",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT"
repository = "https://github.com/alexjackson1/sat-solvers"

[features]
cadical = []
default = [
    "cadical",
    "minisat",
]
glucose = []
kissat = []
lingeling = []
minisat = []

[lib]
name = "sat_solvers"
path = "src/lib.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[dependencies.log]
version = "0.4.27"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.tempfile]
version = "3.2.3"

[dependencies.thiserror]
version = "2.0"