veripb-formula 0.1.2

VeriPB library to handle pseudo-Boolean constraints, formulas, and more data structures.
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 = "2021"
rust-version = "1.84.0"
name = "veripb-formula"
version = "0.1.2"
authors = ["Andy Oertel <andy.oertel@cs.lth.se>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "VeriPB library to handle pseudo-Boolean constraints, formulas, and more data structures."
readme = "README.md"
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/MIAOresearch/software/VeriPB"
resolver = "3"

[lib]
name = "veripb_formula"
crate-type = ["rlib"]
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

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

[dependencies.ahash]
version = "0.8.11"

[dependencies.malachite-bigint]
version = "0.5.0"

[dependencies.num-integer]
version = "0.1.46"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.smartstring]
version = "1.0.1"

[dependencies.spire_enum]
version = "0.7.1"

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

[dev-dependencies.rand]
version = "0.9.2"