[package]
edition = "2024"
rust-version = "1.95.0"
name = "use-combinatorics"
version = "0.0.6"
authors = ["RustUse Contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utility-first checked combinatorics helpers for RustUse"
homepage = "https://github.com/RustUse/use-math"
documentation = "https://docs.rs/use-combinatorics"
readme = "README.md"
keywords = [
"math",
"combinatorics",
"counting",
"factorial",
"binomial",
]
categories = [
"mathematics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustUse/use-math"
resolver = "2"
[lib]
name = "use_combinatorics"
path = "src/lib.rs"
[[example]]
name = "basic_counting"
path = "examples/basic_counting.rs"
[[test]]
name = "basic_counting"
path = "tests/basic_counting.rs"
[[test]]
name = "property_counting"
path = "tests/property_counting.rs"
[dev-dependencies.proptest]
version = "1.11.0"
features = ["std"]
default-features = false
[lints.clippy]
expect_used = "warn"
multiple_crate_versions = "allow"
todo = "deny"
unimplemented = "deny"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1