[package]
edition = "2024"
name = "helm-schema-syntax"
version = "0.0.3"
authors = ["romnn <contact@romnn.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate an accurate JSON schema for any helm chart"
homepage = "https://github.com/romnn/helm-schema"
readme = false
categories = [
"development-tools",
"development-tools::build-utils",
]
license = "MIT"
repository = "https://github.com/romnn/helm-schema"
resolver = "2"
[lib]
name = "helm_schema_syntax"
path = "src/lib.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[dependencies.helm-schema-template-grammar]
version = "=0.0.3"
[dependencies.tracing]
version = "0.1"
[dependencies.tree-sitter]
version = "0.26"
[dev-dependencies.color-eyre]
version = "0"
[dev-dependencies.indoc]
version = "2"
[dev-dependencies.similar-asserts]
version = "2"
[lints.clippy]
allow_attributes_without_reason = "deny"
assigning_clones = "allow"
await_holding_lock = "deny"
expect_used = "deny"
indexing_slicing = "deny"
map_unwrap_or = "allow"
missing_errors_doc = "warn"
panic = "deny"
struct_excessive_bools = "allow"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
unused_must_use = "deny"
[lints.rust.warnings]
level = "warn"
priority = -1