oxiz 0.1.3

Next-Generation SMT Solver in Pure Rust
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"
version = "0.1.3"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Next-Generation SMT Solver in Pure Rust"
readme = "README.md"
keywords = [
    "smt",
    "solver",
    "sat",
    "verification",
    "logic",
]
categories = [
    "algorithms",
    "science",
    "mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiz"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["solver"]
full = [
    "standard",
    "spacer",
]
nlsat = [
    "dep:oxiz-nlsat",
    "solver",
]
optimization = [
    "dep:oxiz-opt",
    "solver",
]
proof = [
    "dep:oxiz-proof",
    "solver",
]
solver = [
    "dep:oxiz-sat",
    "dep:oxiz-theories",
    "dep:oxiz-solver",
]
spacer = [
    "dep:oxiz-spacer",
    "solver",
]
standard = [
    "solver",
    "nlsat",
    "optimization",
    "proof",
]

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

[dependencies.oxiz-core]
version = "0.1.3"

[dependencies.oxiz-math]
version = "0.1.3"

[dependencies.oxiz-nlsat]
version = "0.1.3"
optional = true

[dependencies.oxiz-opt]
version = "0.1.3"
optional = true

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

[dependencies.oxiz-sat]
version = "0.1.3"
optional = true

[dependencies.oxiz-solver]
version = "0.1.3"
optional = true

[dependencies.oxiz-spacer]
version = "0.1.3"
optional = true

[dependencies.oxiz-theories]
version = "0.1.3"
optional = true

[dev-dependencies.num-bigint]
version = "0.4"

[lints.clippy]
collapsible_if = "allow"
too_many_arguments = "allow"
type_complexity = "allow"

[lints.rust]
dead_code = "allow"
unused_variables = "allow"