[package]
edition = "2021"
rust-version = "1.80"
name = "lspkit-config"
version = "0.0.1"
build = false
include = [
"src/**/*",
"LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Layered TOML configuration loader generic over the consumer's config struct."
documentation = "https://docs.rs/lspkit-config"
readme = "README.md"
keywords = [
"lsp",
"mcp",
"language-server",
"tree-sitter",
"json-rpc",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/Nimblesite/lspkit"
[lib]
name = "lspkit_config"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "deny"