[package]
edition = "2024"
rust-version = "1.92"
name = "shipper-cli"
version = "0.3.0-rc.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI adapter for Shipper. Install with `cargo install shipper --locked`; this crate is for embedders who want the exact CLI surface programmatically."
homepage = "https://github.com/EffortlessMetrics/shipper"
documentation = "https://docs.rs/shipper-cli"
readme = "README.md"
keywords = [
"cargo",
"publish",
"workspace",
"cli",
"ci",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/shipper"
[lib]
name = "shipper_cli"
path = "src/lib.rs"
[[bin]]
name = "shipper-cli"
path = "src/main.rs"
[[test]]
name = "bdd_config"
path = "tests/bdd_config.rs"
[[test]]
name = "bdd_doctor"
path = "tests/bdd_doctor.rs"
[[test]]
name = "bdd_error_handling"
path = "tests/bdd_error_handling.rs"
[[test]]
name = "bdd_error_recovery"
path = "tests/bdd_error_recovery.rs"
[[test]]
name = "bdd_micro_backends"
path = "tests/bdd_micro_backends.rs"
[[test]]
name = "bdd_parallel"
path = "tests/bdd_parallel.rs"
[[test]]
name = "bdd_preflight"
path = "tests/bdd_preflight.rs"
[[test]]
name = "bdd_publish"
path = "tests/bdd_publish.rs"
[[test]]
name = "bdd_publish_advanced"
path = "tests/bdd_publish_advanced.rs"
[[test]]
name = "bdd_publish_flow"
path = "tests/bdd_publish_flow.rs"
[[test]]
name = "bdd_resume"
path = "tests/bdd_resume.rs"
[[test]]
name = "bdd_status"
path = "tests/bdd_status.rs"
[[test]]
name = "bdd_workflow"
path = "tests/bdd_workflow.rs"
[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"
[[test]]
name = "cli_snapshots"
path = "tests/cli_snapshots.rs"
[[test]]
name = "e2e_config"
path = "tests/e2e_config.rs"
[[test]]
name = "e2e_doctor"
path = "tests/e2e_doctor.rs"
[[test]]
name = "e2e_expanded"
path = "tests/e2e_expanded.rs"
[[test]]
name = "e2e_plan"
path = "tests/e2e_plan.rs"
[[test]]
name = "e2e_preflight"
path = "tests/e2e_preflight.rs"
[[test]]
name = "e2e_publish"
path = "tests/e2e_publish.rs"
[[test]]
name = "e2e_rehearse"
path = "tests/e2e_rehearse.rs"
[[test]]
name = "e2e_resume"
path = "tests/e2e_resume.rs"
[[test]]
name = "e2e_status"
path = "tests/e2e_status.rs"
[[test]]
name = "integration_config"
path = "tests/integration_config.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.shipper-config]
version = "0.3.0-rc.2"
[dependencies.shipper-core]
version = "0.3.0-rc.2"
[dependencies.shipper-duration]
version = "0.3.0-rc.2"
[dependencies.shipper-retry]
version = "0.3.0-rc.2"
[dependencies.shipper-types]
version = "0.3.0-rc.2"
[dependencies.toml]
version = "1.0.3"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.console]
version = "0.16.3"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.temp-env]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tiny_http]
version = "0.12"
[lints.rust]
unsafe_code = "forbid"