[package]
edition = "2024"
rust-version = "1.85.0"
name = "z3"
version = "0.19.9"
authors = [
"Graydon Hoare <graydon@pobox.com>",
"Bruce Mitchener <bruce.mitchener@gmail.com>",
"Nick Fitzgerald <fitzgen@gmail.com>",
"Mark DenHoed <mark.denhoed@cs.ox.ac.uk>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level rust bindings for the Z3 SMT solver from Microsoft Research"
homepage = "https://github.com/prove-rs/z3.rs"
documentation = "https://docs.rs/z3/"
readme = "README.md"
keywords = [
"FFI",
"SMT",
"satisfiability",
"solver",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/prove-rs/z3.rs.git"
[features]
bundled = ["z3-sys/bundled"]
default = ["z3_4_8_15"]
gh-release = ["z3-sys/gh-release"]
static-link-z3 = [
"z3-sys/bundled",
"z3-sys/deprecated-static-link-z3",
]
vcpkg = ["z3-sys/vcpkg"]
z3_4_8_13 = []
z3_4_8_14 = ["z3_4_8_13"]
z3_4_8_15 = ["z3_4_8_14"]
[lib]
name = "z3"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "objectives"
path = "tests/objectives.rs"
[[test]]
name = "ops"
path = "tests/ops.rs"
[[test]]
name = "semver_tests"
path = "tests/semver_tests.rs"
[dependencies.log]
version = "0.4"
[dependencies.num]
version = "0.4"
[dependencies.z3-sys]
version = "0.10.6"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.rayon]
version = "1.10.0"
[dev-dependencies.semver]
version = "1"