[package]
edition = "2024"
name = "elenchus-solver"
version = "0.6.0"
authors = ["Mansur Azatbek <mansur62624@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forward-pass inference interpreter for elenchus: 3-valued Kleene evaluation of the Impossible/CNF clause IR into CONFLICT / WARNING / CONSISTENT results."
homepage = "https://github.com/m62624/elenchus"
readme = "README.md"
keywords = [
"logic",
"inference",
"verification",
"kleene",
"no-std",
]
categories = [
"mathematics",
"no-std",
"development-tools",
]
license = "MIT"
repository = "https://github.com/m62624/elenchus"
resolver = "2"
[package.metadata.dist]
dist = false
[features]
default = ["std"]
std = ["elenchus-compiler/std"]
[lib]
name = "elenchus_solver"
path = "src/lib.rs"
[[test]]
name = "json_variants"
path = "tests/json_variants.rs"
[[test]]
name = "output_variants"
path = "tests/output_variants.rs"
[[test]]
name = "prop"
path = "tests/prop.rs"
[[test]]
name = "puzzles"
path = "tests/puzzles.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[dependencies.elenchus-compiler]
version = "0.6.0"
default-features = false
[dev-dependencies.insta]
version = "1.41"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"