[package]
edition = "2024"
name = "helm-schema-core"
version = "0.0.4"
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_core"
path = "src/lib.rs"
[[test]]
name = "public_surface"
path = "tests/public_surface.rs"
[dependencies.helm-schema-json-schema-walk]
version = "=0.0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.regex]
version = "1"
[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