z3rs 0.0.8

A pure-Rust port of the Z3 theorem prover, free of third-party and native dependencies
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.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"