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