[package]
name = "devops-validate"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "YAML validation and auto-repair engine for DevOps configuration files: Kubernetes, Docker Compose, GitLab CI, GitHub Actions, Prometheus, Alertmanager, Helm, and Ansible."
license = "MIT OR Apache-2.0"
repository = "https://github.com/automataIA/devops-assistant-rs"
homepage = "https://github.com/automataIA/devops-assistant-rs"
documentation = "https://docs.rs/devops-validate"
readme = "README.md"
keywords = ["devops", "kubernetes", "yaml", "validation", "linter"]
categories = [
"parsing",
"config",
"development-tools",
"command-line-utilities",
]
include = ["src/**/*", "README.md", "LICENSE-MIT", "LICENSE-APACHE"]
[features]
default = []
wasm = ["getrandom/wasm_js"]
[dependencies]
devops-models = { version = "0.1", path = "../devops-models" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
jsonschema = { version = "0.18", default-features = false }
getrandom = { version = "0.3", optional = true }