reproducible 0.2.0

Utilities for reproducible accuracy and benchmark reporting in Rust projects
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"
name = "reproducible"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities for reproducible accuracy and benchmark reporting in Rust projects"
readme = "README.md"
keywords = [
    "benchmark",
    "accuracy",
    "report",
    "testing",
    "reproducibility",
]
categories = [
    "development-tools::testing",
    "development-tools::profiling",
]
license = "BSD-3-Clause"
repository = "https://github.com/p-sira/reproducible"

[features]
default = ["macros"]
macros = ["dep:reproducible-macros"]

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

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "csv_loading"
path = "examples/csv_loading.rs"

[[bench]]
name = "latency"
path = "benches/latency.rs"
harness = false

[dependencies.csv]
version = "1"

[dependencies.delegate]
version = "0.13"

[dependencies.getset]
version = "0.1"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.reproducible-macros]
version = "0.1"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tabled]
version = "0.18"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.tempfile]
version = "3"