2023-11-02 16:18:57 +01:00
|
|
|
[package]
|
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "Nushell's integrated LSP server"
|
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-lsp"
|
|
|
|
name = "nu-lsp"
|
2024-07-25 12:28:18 +02:00
|
|
|
version = "0.96.1"
|
2023-11-02 16:18:57 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-25 12:28:18 +02:00
|
|
|
nu-cli = { path = "../nu-cli", version = "0.96.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.96.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.96.1" }
|
2023-11-14 21:01:19 +01:00
|
|
|
|
2024-03-07 23:40:31 +01:00
|
|
|
reedline = { workspace = true }
|
2023-11-02 16:18:57 +01:00
|
|
|
|
2024-03-24 00:46:02 +01:00
|
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
lsp-types = { workspace = true }
|
|
|
|
lsp-server = { workspace = true }
|
2024-03-07 23:40:31 +01:00
|
|
|
miette = { workspace = true }
|
2024-03-24 00:46:02 +01:00
|
|
|
ropey = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
2024-03-07 23:40:31 +01:00
|
|
|
serde_json = { workspace = true }
|
2023-11-02 16:18:57 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-07-25 12:28:18 +02:00
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.96.1" }
|
|
|
|
nu-command = { path = "../nu-command", version = "0.96.1" }
|
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.96.1" }
|
2023-11-02 16:18:57 +01:00
|
|
|
|
2024-06-25 20:29:47 +02:00
|
|
|
assert-json-diff = "2.0"
|