[package]
edition = "2024"
rust-version = "1.92"
name = "shipper"
version = "0.3.0-rc.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reliable, resumable `cargo publish` for Rust workspaces. Install with `cargo install shipper --locked`."
homepage = "https://github.com/EffortlessMetrics/shipper"
documentation = "https://docs.rs/shipper"
readme = "README.md"
keywords = [
"cargo",
"publish",
"workspace",
"release",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
"development-tools::build-utils",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/shipper"
[features]
cli = ["dep:shipper-cli"]
default = ["cli"]
[lib]
name = "shipper"
path = "src/lib.rs"
[[bin]]
name = "shipper"
path = "src/bin/shipper.rs"
required-features = ["cli"]
[[test]]
name = "config_contract"
path = "tests/config_contract.rs"
[[test]]
name = "cross_crate_integration"
path = "tests/cross_crate_integration.rs"
[[test]]
name = "engine_parallel_chunking_bdd"
path = "tests/engine_parallel_chunking_bdd.rs"
[[test]]
name = "engine_parallel_chunking_integration"
path = "tests/engine_parallel_chunking_integration.rs"
[[test]]
name = "execution_bdd"
path = "tests/execution_bdd.rs"
[[test]]
name = "facade_integration"
path = "tests/facade_integration.rs"
[[test]]
name = "integration_plan_engine"
path = "tests/integration_plan_engine.rs"
[[test]]
name = "parallel_levels_integration"
path = "tests/parallel_levels_integration.rs"
[[test]]
name = "pipeline_integration"
path = "tests/pipeline_integration.rs"
[[test]]
name = "schema_version_integration"
path = "tests/schema_version_integration.rs"
[[test]]
name = "state_integration"
path = "tests/state_integration.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.shipper-cli]
version = "0.3.0-rc.2"
optional = true
[dependencies.shipper-core]
version = "0.3.0-rc.2"
[dev-dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dev-dependencies.console]
version = "0.16.3"
[dev-dependencies.insta]
version = "1.46.3"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.serial_test]
version = "3.4.0"
[dev-dependencies.shipper-core]
version = "0.3.0-rc.2"
[dev-dependencies.shipper-types]
version = "0.3.0-rc.2"
[dev-dependencies.temp-env]
version = "0.3"
[dev-dependencies.tempfile]
version = "3.26.0"
[dev-dependencies.tiny_http]
version = "0.12.0"
[lints.rust]
unsafe_code = "forbid"