cbh_model 0.0.4

Implementation crate for cargo-bench-history - do not reference directly
Documentation
[package]
# Cargo has its own logic for naming and expects dashes for the `cargo-bench-history`
# binary, but its internal implementation crates use the short `cbh_` underscore prefix.
name = "cbh_model"
description = "Implementation crate for cargo-bench-history - do not reference directly"
publish = true
version = "0.0.4"

authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true

[lib]
# This is an implementation crate whose surface is documented on `cargo-bench-history`.
doc = false

[dependencies]
jiff = { workspace = true, features = ["serde"] }
nonempty = { workspace = true, features = ["serialize"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
smallvec = { workspace = true, features = ["serde"] }

[dev-dependencies]
criterion = { workspace = true }

[[bench]]
name = "cbh_model"
harness = false

[lints]
workspace = true