lspkit 0.0.1

Generic Rust infrastructure for building LSP+MCP servers — façade crate exposing the EngineApi contract.
Documentation
[package]
name = "lspkit"
description = "Generic Rust infrastructure for building LSP+MCP servers — façade crate exposing the EngineApi contract."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
documentation = "https://docs.rs/lspkit"
# Lean tarball: ship sources + the release-staged license only. LICENSE-MIT is
# gitignored (staged at publish time), so `include` forces it into the package.
# [SWR-REL-LICENSE]
include = ["src/**/*", "LICENSE-MIT"]

[lints]
workspace = true

[dependencies]
async-trait.workspace = true
futures-core.workspace = true
tokio-util.workspace = true

# Optional: feature-gated tracing-subscriber bootstrap.
tracing = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, optional = true }
thiserror = { workspace = true, optional = true }

[features]
default = []
tracing-setup = ["dep:tracing", "dep:tracing-subscriber", "dep:thiserror"]

[dev-dependencies]
tokio = { workspace = true }
futures-util.workspace = true
async-trait.workspace = true
tokio-util.workspace = true