[package]
edition = "2021"
rust-version = "1.70"
name = "rz3"
version = "0.1.3"
authors = ["Francisco Molina-Burgos <pako.molina@gmail.com>"]
build = false
exclude = [
"/.codex_target",
"/.codex_tmp",
"/.codex_cache",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, exact-rational SMT solver in pure Rust (DPLL(T)/CDCL) with an exact linear-arithmetic core. Zero C dependencies, WASM-deployable, reproducible run-to-run."
readme = "README.md"
keywords = [
"smt",
"solver",
"theorem-prover",
"satisfiability",
"deterministic",
]
categories = [
"mathematics",
"science",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Yatrogenesis/rz3"
[lib]
name = "rz3"
path = "src/lib.rs"
[[bin]]
name = "rz3"
path = "src/main.rs"
[[bin]]
name = "rz3-parity"
path = "src/bin/rz3-parity.rs"
[[test]]
name = "array_tests"
path = "tests/array_tests.rs"
[[test]]
name = "define_fun_tests"
path = "tests/define_fun_tests.rs"
[[test]]
name = "determinism_full_test"
path = "tests/determinism_full_test.rs"
[[test]]
name = "dl_difference_logic"
path = "tests/dl_difference_logic.rs"
[[test]]
name = "euf_bool_congruence_tests"
path = "tests/euf_bool_congruence_tests.rs"
[[test]]
name = "fp_ground_tests"
path = "tests/fp_ground_tests.rs"
[[test]]
name = "get_value_tests"
path = "tests/get_value_tests.rs"
[[test]]
name = "lra_disequality_soundness"
path = "tests/lra_disequality_soundness.rs"
[[test]]
name = "lra_simplex_termination"
path = "tests/lra_simplex_termination.rs"
[[test]]
name = "lra_strict_bound_conflict"
path = "tests/lra_strict_bound_conflict.rs"
[[test]]
name = "nla_tests"
path = "tests/nla_tests.rs"
[[test]]
name = "parser_determinism_test"
path = "tests/parser_determinism_test.rs"
[[test]]
name = "parser_params_test"
path = "tests/parser_params_test.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "quantifier_tests"
path = "tests/quantifier_tests.rs"
[[test]]
name = "sat_tests"
path = "tests/sat_tests.rs"
[[test]]
name = "smt_lib_2_6_test"
path = "tests/smt_lib_2_6_test.rs"
[[test]]
name = "smt_tests"
path = "tests/smt_tests.rs"
[[test]]
name = "string_tests"
path = "tests/string_tests.rs"
[[test]]
name = "tactic_tests"
path = "tests/tactic_tests.rs"
[[test]]
name = "theory_tests"
path = "tests/theory_tests.rs"
[[test]]
name = "type_inference_tests"
path = "tests/type_inference_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.num-bigint]
version = "0.4"
[dependencies.num-rational]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"