[package]
edition = "2024"
name = "schema-catalog"
version = "0.0.6"
authors = ["Ian Macalinao <me@ianm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Types for the JSON Schema catalog format (schema-catalog.json)"
homepage = "https://github.com/lintel-rs/lintel"
readme = "README.md"
keywords = [
"json-schema",
"catalog",
"schemastore",
]
categories = [
"data-structures",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/lintel-rs/lintel"
resolver = "2"
[lib]
name = "schema_catalog"
path = "src/lib.rs"
[dependencies.glob-set]
version = "0.0.1"
[dependencies.schemars]
version = "1.2.1"
features = ["derive"]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.serde_json]
version = "1.0.149"
features = ["alloc"]
default-features = false
[lints.clippy]
cognitive_complexity = "deny"
must_use_candidate = "allow"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
too_many_lines = "deny"
unwrap_used = "deny"
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1