[package]
edition = "2021"
rust-version = "1.90"
name = "decl-lang"
version = "0.3.0"
build = "build.rs"
include = [
"src/**",
"build.rs",
"grammar/**",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Decl — a declarative language for describing, generating, and validating structured data: the `decl` CLI (check / evaluate / validate / fmt) and the `decl-lsp` language server, implemented natively in Rust"
homepage = "https://github.com/luuvish/decl-lang"
readme = "README.md"
keywords = [
"decl",
"declarative",
"schema",
"validation",
"configuration",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/luuvish/decl-lang"
[lib]
name = "decl_lang"
path = "src/lib.rs"
[[bin]]
name = "decl"
path = "src/main.rs"
[[bin]]
name = "decl-lsp"
path = "src/lsp_main.rs"
[dependencies.num-bigint]
version = "0.5"
[dependencies.num-integer]
version = "0.1"
[dependencies.num-traits]
version = "0.2"
[dependencies.regex]
version = "1"
[dependencies.rustyline]
version = "18"
[dependencies.sha2]
version = "0.11"
[dependencies.tree-sitter]
version = "0.27"
[dependencies.tree-sitter-language]
version = "0.1"
[build-dependencies.cc]
version = "1"
[lints.clippy]
only_used_in_recursion = "allow"
result_large_err = "allow"
too_many_arguments = "allow"
type_complexity = "allow"