lspkit-config 0.0.1

Layered TOML configuration loader generic over the consumer's config struct.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `lspkit-config` — layered TOML config loader for LSP/MCP servers.
//!
//! Walks up from a workspace root looking for a named config file and
//! deserializes it into a consumer-supplied `serde::Deserialize` type.

pub mod layered;

pub use crate::layered::{
    find_ancestor, load_from_ancestor, load_from_path, LoadError, LoadedConfig,
};