subms-stats 0.6.0

Latency-distribution statistics. Pure functions on &[u64] sample arrays: percentiles, log2-spaced CDF histograms, jitter score, tail analysis (CTE / Hill index / fatness ratio), robust statistics (IQR / MAD / CoV / skew / kurtosis), KS distribution comparison, Cohen's d effect size, and bootstrap confidence intervals. Zero-dependency std-only. Byte-equivalent to the Java sibling com.submillisecond:subms-stats.
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 = "2024"
rust-version = "1.85"
name = "subms-stats"
version = "0.6.0"
authors = ["Kieran Smith <oss@submillisecond.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Latency-distribution statistics. Pure functions on &[u64] sample arrays: percentiles, log2-spaced CDF histograms, jitter score, tail analysis (CTE / Hill index / fatness ratio), robust statistics (IQR / MAD / CoV / skew / kurtosis), KS distribution comparison, Cohen's d effect size, and bootstrap confidence intervals. Zero-dependency std-only. Byte-equivalent to the Java sibling com.submillisecond:subms-stats."
homepage = "https://github.com/submillisecond/subms-stats"
documentation = "https://docs.rs/subms-stats"
readme = "README.md"
keywords = [
    "statistics",
    "percentile",
    "histogram",
    "latency",
    "tail-latency",
]
categories = [
    "mathematics",
    "development-tools::profiling",
    "no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/submillisecond/subms-stats"

[features]
bootstrap = []
compare = []
default = ["full"]
full = [
    "histogram",
    "jitter",
    "tail",
    "robust",
    "compare",
    "bootstrap",
]
histogram = []
jitter = []
robust = []
tail = []

[lib]
name = "subms_stats"
path = "src/lib.rs"

[dependencies]

[dev-dependencies]