[package]
edition = "2024"
name = "stow-types"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared API and artifact-identity types for the stow artifact cache"
readme = "README.md"
keywords = [
"artifact-cache",
"cargo",
"oci",
"rustc",
]
categories = [
"caching",
"development-tools::build-utils",
]
license = "MIT"
repository = "https://github.com/water-rs/stow"
[lib]
name = "stow_types"
path = "src/lib.rs"
[[test]]
name = "oci_manifest"
path = "tests/oci_manifest.rs"
[dependencies.blake3]
version = "1"
[dependencies.hex]
version = "0.4"
[dependencies.semver]
version = "1.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.shell-words]
version = "1"
[dependencies.tar]
version = "0.4"
[dependencies.target-lexicon]
version = "0.12"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-ident]
version = "1"
[dependencies.utoipa]
version = "5.4"
features = ["macros"]
default-features = false
[dev-dependencies.serial_test]
version = "4"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.object]
version = "0.39.1"
features = [
"read_core",
"elf",
"std",
]
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.zstd]
version = "0.14"
[lints.clippy]
all = "warn"
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"