[package]
edition = "2021"
rust-version = "1.80"
name = "lspkit-server"
version = "0.0.1"
build = false
include = [
"src/**/*",
"LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hand-rolled JSON-RPC LSP server scaffolding: Content-Length framing, dispatcher, capability builder, URI helpers, diagnostics fan-out, progress, cancellation."
documentation = "https://docs.rs/lspkit-server"
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_server"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.lsp-types]
version = "0.97"
[dependencies.lspkit]
version = "0.0.1"
[dependencies.lspkit-vfs]
version = "0.0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"io-util",
"fs",
"process",
"time",
"net",
]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"io-util",
"fs",
"process",
"time",
"net",
"rt-multi-thread",
"macros",
"sync",
"io-util",
"time",
]
[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"