[package]
edition = "2024"
rust-version = "1.92"
name = "shipper-config"
version = "0.3.0-rc.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configuration file handling for shipper"
documentation = "https://docs.rs/shipper-config"
readme = "README.md"
keywords = [
"config",
"toml",
"publish",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/shipper"
[lib]
name = "shipper_config"
path = "src/lib.rs"
[[test]]
name = "config_integration"
path = "tests/config_integration.rs"
[[test]]
name = "config_runtime_bdd"
path = "tests/config_runtime_bdd.rs"
[[test]]
name = "config_runtime_contract"
path = "tests/config_runtime_contract.rs"
[[test]]
name = "config_runtime_proptest"
path = "tests/config_runtime_proptest.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_with]
version = "3.17.0"
[dependencies.shipper-encrypt]
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.shipper-webhook]
version = "0.3.0-rc.2"
[dependencies.toml]
version = "1.0"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
unsafe_code = "forbid"