[package]
name = "aethershell-lsp"
version = "3.0.0"
edition = "2021"
description = "Language Server Protocol implementation for AetherShell — diagnostics, completion, hover, and symbols for .ae scripts."
license = "AGPL-3.0-or-later"
authors = ["Nervosys <contact@nervosys.ai>"]
repository = "https://github.com/nervosys/AetherShell"
homepage = "https://github.com/nervosys/AetherShell/tree/master/crates/aethershell-lsp"
documentation = "https://docs.rs/aethershell-lsp"
readme = "README.md"
keywords = ["lsp", "shell", "language-server", "aethershell", "ide"]
categories = ["development-tools", "command-line-utilities"]
rust-version = "1.88"
[[bin]]
name = "aethershell-lsp"
path = "src/main.rs"
[dependencies]
tower-lsp = "0.20"
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
aethershell = { version = "3.0.0", path = "../..", default-features = false, features = [
"native",
] }
dashmap = "5.5"
ropey = "1.6"
lsp-types = "0.94"
url = "2.5"
regex = "1.10"