[package]
edition = "2024"
rust-version = "1.92"
name = "shipper-duration"
version = "0.3.0-rc.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Duration parsing and serde codecs for shipper"
documentation = "https://docs.rs/shipper-duration"
readme = "README.md"
keywords = [
"duration",
"serde",
"parsing",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/shipper"
[lib]
name = "shipper_duration"
path = "src/lib.rs"
[[test]]
name = "duration_config_integration"
path = "tests/duration_config_integration.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[dependencies.humantime]
version = "2.3.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dev-dependencies.insta]
version = "1.47.2"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.toml]
version = "1.0.3"
[lints.rust]
unsafe_code = "forbid"