[package]
edition = "2024"
rust-version = "1.88"
name = "lightshuttle-spec"
version = "0.4.0"
authors = ["Nubster"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Manifest to container specification resolution for LightShuttle"
homepage = "https://github.com/nubster-opensources/lightshuttle"
readme = "README.md"
keywords = [
"lightshuttle",
"container",
"spec",
"manifest",
"orchestrator",
]
categories = [
"development-tools",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nubster-opensources/lightshuttle"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "lightshuttle_spec"
path = "src/lib.rs"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.lightshuttle-manifest]
version = "0.4.0"
[dependencies.rand]
version = "0.9"
[dependencies.thiserror]
version = "2"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1