[package]
edition = "2024"
rust-version = "1.95"
name = "perfgate-cli"
version = "0.17.0"
authors = ["Effortless Metrics"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for perfgate performance budgets and baseline diffs"
homepage = "https://github.com/EffortlessMetrics/perfgate"
documentation = "https://docs.rs/perfgate-cli"
readme = "README.md"
keywords = [
"performance",
"benchmarking",
"budgets",
"baseline",
"ci",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/perfgate"
resolver = "2"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/perfgate-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "perfgate{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/perfgate-{ target }.zip"
pkg-fmt = "zip"
[[bin]]
name = "perfgate"
path = "src/main.rs"
[[test]]
name = "cli_abi_conformance_tests"
path = "tests/cli_abi_conformance_tests.rs"
[[test]]
name = "cli_aggregate_tests"
path = "tests/cli_aggregate_tests.rs"
[[test]]
name = "cli_annotations_tests"
path = "tests/cli_annotations_tests.rs"
[[test]]
name = "cli_baseline_bootstrap_tests"
path = "tests/cli_baseline_bootstrap_tests.rs"
[[test]]
name = "cli_cargo_bench_tests"
path = "tests/cli_cargo_bench_tests.rs"
[[test]]
name = "cli_check_tests"
path = "tests/cli_check_tests.rs"
[[test]]
name = "cli_cockpit_tests"
path = "tests/cli_cockpit_tests.rs"
[[test]]
name = "cli_comment_tests"
path = "tests/cli_comment_tests.rs"
[[test]]
name = "cli_compare_tests"
path = "tests/cli_compare_tests.rs"
[[test]]
name = "cli_cpu_time_tests"
path = "tests/cli_cpu_time_tests.rs"
[[test]]
name = "cli_diff_tests"
path = "tests/cli_diff_tests.rs"
[[test]]
name = "cli_doctor_tests"
path = "tests/cli_doctor_tests.rs"
[[test]]
name = "cli_export_tests"
path = "tests/cli_export_tests.rs"
[[test]]
name = "cli_first_run_e2e_tests"
path = "tests/cli_first_run_e2e_tests.rs"
[[test]]
name = "cli_help_snapshot_tests"
path = "tests/cli_help_snapshot_tests.rs"
[[test]]
name = "cli_host_mismatch_tests"
path = "tests/cli_host_mismatch_tests.rs"
[[test]]
name = "cli_ingest_tests"
path = "tests/cli_ingest_tests.rs"
[[test]]
name = "cli_init_tests"
path = "tests/cli_init_tests.rs"
[[test]]
name = "cli_md_tests"
path = "tests/cli_md_tests.rs"
[[test]]
name = "cli_mock_server_tests"
path = "tests/cli_mock_server_tests.rs"
[[test]]
name = "cli_paired_tests"
path = "tests/cli_paired_tests.rs"
[[test]]
name = "cli_performance_decision_example_tests"
path = "tests/cli_performance_decision_example_tests.rs"
[[test]]
name = "cli_probe_tests"
path = "tests/cli_probe_tests.rs"
[[test]]
name = "cli_promote_tests"
path = "tests/cli_promote_tests.rs"
[[test]]
name = "cli_release_decision_proof_tests"
path = "tests/cli_release_decision_proof_tests.rs"
[[test]]
name = "cli_report_tests"
path = "tests/cli_report_tests.rs"
[[test]]
name = "cli_run_tests"
path = "tests/cli_run_tests.rs"
[[test]]
name = "cli_scenario_tests"
path = "tests/cli_scenario_tests.rs"
[[test]]
name = "cli_serve_tests"
path = "tests/cli_serve_tests.rs"
[[test]]
name = "cli_server_tests"
path = "tests/cli_server_tests.rs"
[[test]]
name = "cli_structured_decision_e2e_tests"
path = "tests/cli_structured_decision_e2e_tests.rs"
[[test]]
name = "cli_tradeoff_tests"
path = "tests/cli_tradeoff_tests.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.ctrlc]
version = "3.4"
[dependencies.glob]
version = "0.3.2"
[dependencies.humantime]
version = "2.3.0"
[dependencies.notify]
version = "7.0"
features = ["macos_kqueue"]
default-features = false
[dependencies.object_store]
version = "0.12"
features = [
"aws",
"gcp",
]
[dependencies.perfgate]
version = "0.17.0"
features = ["github"]
[dependencies.perfgate-client]
version = "0.17.0"
[dependencies.perfgate-server]
version = "0.17.0"
[dependencies.perfgate-types]
version = "0.17.0"
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.shell-words]
version = "1.1.0"
[dependencies.tokio]
version = "1.49.0"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.toml]
version = "0.9.8"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5.7"
[dependencies.uuid]
version = "1.21.0"
features = ["v4"]
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.insta]
version = "1.46.3"
features = ["json"]
[dev-dependencies.jsonschema]
version = "0.26"
[dev-dependencies.perfgate-server]
version = "0.17.0"
features = ["test-utils"]
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
dbg_macro = "deny"
manual_checked_ops = "warn"
manual_take = "warn"
same_length_and_capacity = "deny"
todo = "deny"
unimplemented = "deny"
unnecessary_trailing_comma = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
const_item_interior_mutations = "deny"
function_casts_as_integer = "deny"
unexpected_cfgs = "warn"
unsafe_code = "warn"
unsafe_op_in_unsafe_fn = "deny"
unused_must_use = "deny"
unused_visibilities = "warn"