[package]
name = "smtkit"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Facade crate for SMT constraint IR + SMT-LIB backends"
repository = "https://github.com/arclabs561/smtkit"
homepage = "https://github.com/arclabs561/smtkit"
documentation = "https://docs.rs/smtkit"
readme = "README.md"
publish = true
keywords = ["smt", "smtlib", "z3", "solver", "formal-methods"]
[workspace]
resolver = "2"
members = [
"crates/smtkit-core",
"crates/smtkit-smtlib",
"crates/smtkit-z3",
"crates/smtkit-ci",
]
[workspace.dependencies]
anyhow = "1"
clap = "4"
serde_json = "1.0"
[dependencies]
anyhow = "1"
thiserror = "2"
smtkit-core = { version = "0.1.0", path = "crates/smtkit-core" }
smtkit-smtlib = { version = "0.1.0", path = "crates/smtkit-smtlib" }
smtkit-z3 = { version = "0.1.0", path = "crates/smtkit-z3", optional = true }
[features]
default = []
z3-bin = ["smtkit-smtlib/z3-bin"]
z3-inproc = ["dep:smtkit-z3"]
z3-inproc-bundled = ["z3-inproc", "smtkit-z3/bundled"]
z3-inproc-gh-release = ["z3-inproc", "smtkit-z3/gh-release"]
z3-auto = ["z3-inproc-gh-release"]