oxiz-solver 0.2.0

Main CDCL(T) Solver API for OxiZ
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"
name = "oxiz-solver"
version = "0.2.0"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Main CDCL(T) Solver API for OxiZ"
readme = "README.md"
keywords = [
    "smt",
    "solver",
    "cdcl",
]
categories = ["algorithms"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiz"
resolver = "2"

[features]
default = ["std"]
parallel-theories = ["rayon"]
property-tests = []
std = [
    "oxiz-core/std",
    "oxiz-sat/std",
    "oxiz-theories/std",
    "rayon",
    "tracing",
    "tracing/std",
    "num-bigint/std",
    "num-rational/std",
    "num-traits/std",
    "rustc-hash/std",
    "oxiz-proof",
]

[lib]
name = "oxiz_solver"
path = "src/lib.rs"

[[example]]
name = "arithmetic"
path = "examples/arithmetic.rs"

[[example]]
name = "incremental"
path = "examples/incremental.rs"

[[example]]
name = "optimization"
path = "examples/optimization.rs"

[[example]]
name = "proof_generation"
path = "examples/proof_generation.rs"

[[example]]
name = "quantifier_solving"
path = "examples/quantifier_solving.rs"

[[example]]
name = "simple_sat"
path = "examples/simple_sat.rs"

[[example]]
name = "smt_lib_script"
path = "examples/smt_lib_script.rs"

[[example]]
name = "test_bug"
path = "examples/test_bug.rs"

[[example]]
name = "theory_combination"
path = "examples/theory_combination.rs"

[[test]]
name = "lia_integration"
path = "tests/lia_integration.rs"

[[test]]
name = "proof_roundtrip"
path = "tests/proof_roundtrip.rs"

[[test]]
name = "property_based"
path = "tests/property_based.rs"

[[bench]]
name = "solver_benchmarks"
path = "benches/solver_benchmarks.rs"
harness = false

[dependencies.hashbrown]
version = "0.15"

[dependencies.num-bigint]
version = "0.4"
default-features = false

[dependencies.num-rational]
version = "0.4"
features = ["num-bigint"]
default-features = false

[dependencies.num-traits]
version = "0.2"
default-features = false

[dependencies.oxiz-core]
version = "0.2.0"
default-features = false

[dependencies.oxiz-proof]
version = "0.2.0"
optional = true

[dependencies.oxiz-sat]
version = "0.2.0"
default-features = false

[dependencies.oxiz-theories]
version = "0.2.0"
default-features = false

[dependencies.portable-atomic-util]
version = "0.2"
features = ["alloc"]
default-features = false

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.rustc-hash]
version = "2.1"
default-features = false

[dependencies.smallvec]
version = "1.15"
features = ["serde"]

[dependencies.tracing]
version = "0.1"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.proptest]
version = "1.11"