[package]
edition = "2024"
rust-version = "1.88"
name = "z3rs"
version = "0.0.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust port of the Z3 theorem prover, free of third-party and native dependencies"
readme = "README.md"
keywords = [
"smt",
"solver",
"z3",
"theorem-prover",
"satisfiability",
]
categories = [
"mathematics",
"algorithms",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/z3rs"
[features]
default = []
ffi = ["std"]
std = ["puremp/std"]
[lib]
name = "z3rs"
path = "src/lib.rs"
[[bin]]
name = "z3rs"
path = "src/main.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "no_external_deps"
path = "tests/no_external_deps.rs"
[dependencies.puremp]
version = "0.2.0"
features = [
"rational",
"dyadic",
"float",
]
default-features = false
[dev-dependencies]
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"