[package]
edition = "2021"
name = "ron-schema"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema definition and validation for RON (Rusty Object Notation) files"
readme = "README.md"
keywords = [
"ron",
"schema",
"validation",
"parser",
]
categories = [
"parser-implementations",
"config",
]
license = "MIT"
repository = "https://github.com/Bradley-Hunter/ron-schema-validator"
[lib]
name = "ron_schema"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"