[package]
edition = "2021"
rust-version = "1.78"
name = "api-debug-lab"
version = "0.4.0"
authors = ["infinityabundance <255699974+infinityabundance@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reproducible API troubleshooting fixtures and a Rust diagnostic CLI."
homepage = "https://github.com/infinityabundance/api-support-debug-lab"
documentation = "https://docs.rs/api-debug-lab"
readme = "README.md"
keywords = [
"api",
"debugging",
"support",
"diagnostics",
"cli",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
]
license = "Apache-2.0"
repository = "https://github.com/infinityabundance/api-support-debug-lab"
[package.metadata.docs.rs]
all-features = false
default-target = "x86_64-unknown-linux-gnu"
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
calibration_canary = []
[lib]
name = "api_debug_lab"
path = "src/lib.rs"
[[bin]]
name = "api-debug-lab"
path = "src/main.rs"
[[test]]
name = "calibration"
path = "tests/calibration.rs"
[[test]]
name = "calibration_regression"
path = "tests/calibration_regression.rs"
[[test]]
name = "diagnose_cli"
path = "tests/diagnose_cli.rs"
[[test]]
name = "latency_budget"
path = "tests/latency_budget.rs"
[[test]]
name = "oracle"
path = "tests/oracle.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "rules"
path = "tests/rules.rs"
[[test]]
name = "schema"
path = "tests/schema.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[[bench]]
name = "diagnose"
path = "benches/diagnose.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.url]
version = "2.5"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.insta]
version = "1.39"
features = ["json"]
[dev-dependencies.jsonschema]
version = "0.18"
default-features = false
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"