[package]
edition = "2024"
rust-version = "1.92"
name = "perfgate-cli"
version = "0.4.1"
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"
[[bin]]
name = "perfgate"
path = "src/main.rs"
[[test]]
name = "cli_abi_conformance_tests"
path = "tests/cli_abi_conformance_tests.rs"
[[test]]
name = "cli_annotations_tests"
path = "tests/cli_annotations_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_compare_tests"
path = "tests/cli_compare_tests.rs"
[[test]]
name = "cli_cpu_time_tests"
path = "tests/cli_cpu_time_tests.rs"
[[test]]
name = "cli_export_tests"
path = "tests/cli_export_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_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_promote_tests"
path = "tests/cli_promote_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_server_tests"
path = "tests/cli_server_tests.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.humantime]
version = "2.3.0"
[dependencies.object_store]
version = "0.12"
features = [
"aws",
"gcp",
]
[dependencies.perfgate]
version = "0.4.1"
[dependencies.perfgate-client]
version = "0.4.1"
[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.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"