[package]
edition = "2024"
rust-version = "1.93"
name = "stats-claw"
version = "0.1.0"
build = false
include = [
"/src/**/*.rs",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data science on the hot path: in-process, zero-dependency statistical computing for Rust (distributions, hypothesis tests, resampling) validated against scipy"
documentation = "https://docs.rs/stats-claw"
readme = "README.md"
keywords = [
"statistics",
"hypothesis-testing",
"scipy",
"distributions",
"numerics",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nitrotap/stats-claw"
[lib]
name = "stats_claw"
path = "src/lib.rs"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
dbg_macro = "deny"
exit = "warn"
expect_used = "warn"
float_cmp_const = "warn"
indexing_slicing = "warn"
mem_forget = "deny"
panic = "warn"
print_stderr = "warn"
str_to_string = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_in_result = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
elided_lifetimes_in_paths = "warn"
missing_debug_implementations = "warn"
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_lifetimes = "warn"
unused_qualifications = "warn"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1