mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
944a1f8fb0
Based on the great work in https://github.com/zed-industries/zed/pull/7130 , now sends this data ``` [crates/lsp/src/lsp.rs:588] ClientInfo { name: name.to_string(), version: Some(version.to_string()) } = ClientInfo { name: "Zed Dev", version: Some( "0.122.0", ), } ``` with every LSP server initialization. Release Notes: - Added Zed name and version to LSP InitializeParams requests
56 lines
1.9 KiB
TOML
56 lines
1.9 KiB
TOML
[package]
|
|
name = "vim"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/vim.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-compat = { version = "0.2.1", "optional" = true }
|
|
async-trait = { workspace = true, "optional" = true }
|
|
collections = { path = "../collections" }
|
|
command_palette = { path = "../command_palette" }
|
|
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
|
copilot = { path = "../copilot" }
|
|
diagnostics = { path = "../diagnostics" }
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
itertools = "0.10"
|
|
language = { path = "../language" }
|
|
log.workspace = true
|
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
|
|
regex.workspace = true
|
|
search = { path = "../search" }
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
tokio = { version = "1.15", "optional" = true }
|
|
ui = { path = "../ui" }
|
|
workspace = { path = "../workspace" }
|
|
zed_actions = { path = "../zed_actions" }
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
futures.workspace = true
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
release_channel = { path = "../release_channel" }
|
|
indoc.workspace = true
|
|
language = { path = "../language", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
parking_lot.workspace = true
|
|
project = { path = "../project", features = ["test-support"] }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|