git-perf 0.17.0

Track, plot, and statistically validate simple measurements using git-notes for storage
Documentation
[package]
name = "git-perf"
version = "0.17.0"
edition = "2021"
description = "Track, plot, and statistically validate simple measurements using git-notes for storage"
license = "MIT"
repository = "https://github.com/kaihowl/git-perf"
build = "build.rs"

[[bin]]
name = "git-perf"
path = "src/main.rs"

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

[dependencies]
git_perf_cli_types = { version = "0.1.0", path = "../cli_types" }
anyhow = "1.0.75"
average = "0.13.1"
backoff = "0.4.0"
chrono = "0.4.39"
clap = { version="4", features=["derive", "wrap_help"] }
clap_mangen = "0.2.5"
criterion = "0.5.1"
defer = "0.2.1"
env_logger = "0.11.8"
hex = "0.4.3"
itertools = "0.10.5"
log = "0.4.27"
plotly = "0.8.3"
rand = "0.8.5"
readable = "0.16.0"
serial_test = "3.2.0"
sparklines = "0.3.0"
thiserror = "1.0.51"
toml = "0.8.6"
toml_edit = "0.20.4"
unindent = "0.2.3"

[build-dependencies]
clap = { version="4", features=["derive"] }
clap_mangen = "0.2.5"
git_perf_cli_types = { version = "0.1.0", path = "../cli_types" }

[dev-dependencies]
tempfile = "3.3.0"
httptest = "0.15.4"

[features]
vendored-openssl = []

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

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