[package]
edition = "2024"
rust-version = "1.85.0"
name = "compose-lens"
version = "0.1.1"
build = false
include = [
"/.cargo/**",
"/.editorconfig",
"/.github/**",
"/.markdownlint.json",
"/AGENTS.md",
"/CHANGELOG.md",
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/clippy.toml",
"/conformance/**",
"/deny.toml",
"/docs/**",
"/fixtures/**",
"/rust-toolchain.toml",
"/rustfmt.toml",
"/src/**",
"/tests/**",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Loss-aware parsing, processing, validation, and rendering of Compose projects"
homepage = "https://www.strukturpiloten.de/"
documentation = "https://docs.rs/compose-lens"
readme = "README.md"
keywords = [
"compose",
"containers",
"docker",
"podman",
"yaml",
]
categories = [
"config",
"parser-implementations",
]
license = "MPL-2.0"
repository = "https://github.com/Strukturpiloten/compose-lens"
[package.metadata.strukturpiloten]
company = "Strukturpiloten OHG"
github = "https://github.com/TheRealBecks"
maintainer = 'Martin "Becks" Beckert'
website = "https://www.strukturpiloten.de/"
[lib]
name = "compose_lens"
path = "src/lib.rs"
[[test]]
name = "compatibility"
path = "tests/compatibility.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "preservation_editing"
path = "tests/preservation_editing.rs"
[[test]]
name = "processing"
path = "tests/processing.rs"
[[test]]
name = "project_processing"
path = "tests/project_processing.rs"
[[test]]
name = "project_view"
path = "tests/project_view.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "real_world"
path = "tests/real_world.rs"
[[test]]
name = "rendering"
path = "tests/rendering.rs"
[[test]]
name = "repository_policy"
path = "tests/repository_policy.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "runtime_conformance"
path = "tests/runtime_conformance.rs"
[[test]]
name = "syntax"
path = "tests/syntax.rs"
[[test]]
name = "typed_model"
path = "tests/typed_model.rs"
[dependencies.yaml-edit]
version = "=0.2.3"
default-features = false
[dev-dependencies.sha2]
version = "0.10.9"
default-features = false
[dev-dependencies.toml]
version = "1.1.4"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
unused_lifetimes = "warn"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1