[package]
edition = "2021"
name = "lintel"
version = "0.0.1"
authors = ["Ian Macalinao <me@ianm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Validate JSON and YAML files against JSON Schema"
homepage = "https://github.com/lintel-rs/lintel"
readme = "README.md"
keywords = [
"json-schema",
"validation",
"yaml",
"linter",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/lintel-rs/lintel"
[[bin]]
name = "lintel"
path = "src/main.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bpaf]
version = "0.9"
features = [
"derive",
"bright-color",
]
[dependencies.lintel-check]
version = "0.0.1"
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.toml]
version = "1.0"
[dev-dependencies.insta]
version = "1"
features = ["filters"]