[package]
edition = "2024"
name = "lspf"
version = "0.1.0-alpha.3"
authors = ["Yuming Chen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust framework for building extensible LSP language servers"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/meymchen/lspf"
[lib]
name = "lspf"
path = "src/lib.rs"
[[example]]
name = "hello"
path = "examples/hello/main.rs"
[[test]]
name = "acquire_permit_span"
path = "tests/acquire_permit_span.rs"
[[test]]
name = "cancellation"
path = "tests/cancellation.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "concurrency_cap"
path = "tests/concurrency_cap.rs"
[[test]]
name = "doc_sync_ordering"
path = "tests/doc_sync_ordering.rs"
[[test]]
name = "documents"
path = "tests/documents.rs"
[[test]]
name = "lifecycle_ordering"
path = "tests/lifecycle_ordering.rs"
[[test]]
name = "position_encoding"
path = "tests/position_encoding.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.bytes]
version = "1"
[dependencies.futures-util]
version = "0.3"
default-features = false
[dependencies.lsp-types]
version = "0.97"
[dependencies.ropey]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"io-std",
"io-util",
"sync",
]
[dependencies.tokio-util]
version = "0.7"
features = [
"codec",
"rt",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"process",
"io-util",
"time",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]