lspkit_config/lib.rs
1//! `lspkit-config` — layered TOML config loader for LSP/MCP servers.
2//!
3//! Walks up from a workspace root looking for a named config file and
4//! deserializes it into a consumer-supplied `serde::Deserialize` type.
5
6pub mod layered;
7
8pub use crate::layered::{
9 find_ancestor, load_from_ancestor, load_from_path, LoadError, LoadedConfig,
10};