[package] description = "LSP server to communicate with LLMs" edition = "2021" license = "MIT OR Apache-2.0" name = "llm-lsp" version = "0.1.1" repository = "https://github.com/rosarp/llm-lsp" keywords = ["llm", "lsp", "codeium", "helix", "extension"] authors = ["Rohit Sarpotdar "] readme = "README.md" [dependencies] async-lsp = { version = "0.2.0", features = ["tokio"] } clap = { version = "4.5.20", features = ["derive"] } clap-markdown = "0.1.4" confy = "0.6.1" futures = "0.3.31" inquire = { version = "0.7.5", features = ["editor"] } phf = { version = "0.11.2", features = ["macros"] } reqwest = { version = "0.12.9", features = ["brotli", "deflate", "gzip", "json", "rustls-tls"] } serde = { version = "1.0.214", features = ["derive"] } serde_json = "1.0.132" tokio = { version = "1.41.1", features = ["io-std", "macros", "parking_lot", "rt-multi-thread", "time", "signal"] } tokio-util = { version = "0.7.12", features = ["compat"] } tower = "0.4.13" tracing = "0.1.40" tracing-subscriber = "0.3.18" uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }