[package]
edition = "2024"
rust-version = "1.85.0"
name = "baa"
version = "0.18.0"
authors = ["Kevin Laeufer <laeufer@cornell.edu>"]
build = false
include = [
"Cargo.toml",
"LICENSE",
"src/",
"Readme.md",
"tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BitVector and Array Arithmetic"
readme = "Readme.md"
keywords = [
"bitvector",
"array",
"arithmetic",
]
license = "BSD-3-Clause"
repository = "https://github.com/ekiwi/baa"
[features]
bigint = ["dep:num-bigint"]
default = []
fraction1 = ["dep:fraction"]
rand1 = ["dep:rand"]
serde1 = ["dep:serde"]
[lib]
name = "baa"
path = "src/lib.rs"
[[test]]
name = "arrays"
path = "tests/arrays.rs"
[[test]]
name = "bitvec_arithmetic"
path = "tests/bitvec_arithmetic.rs"
[[test]]
name = "bitvec_bit_ops"
path = "tests/bitvec_bit_ops.rs"
[[test]]
name = "bitvec_cmps"
path = "tests/bitvec_cmps.rs"
[[test]]
name = "bitvec_to_from_str"
path = "tests/bitvec_to_from_str.rs"
[[test]]
name = "value"
path = "tests/value.rs"
[dependencies.fraction]
version = "0.15"
optional = true
[dependencies.num-bigint]
version = "0.4"
optional = true
[dependencies.paste]
version = "1.0.15"
[dependencies.rand]
version = "0.10"
features = []
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.num-bigint]
version = "0.4"
[dev-dependencies.proptest]
version = "1.11"