2021-10-21 17:26:37 +03:00
|
|
|
[package]
|
|
|
|
name = "lsp"
|
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/lsp.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-26 01:28:40 +03:00
|
|
|
[features]
|
|
|
|
test-support = ["async-pipe"]
|
|
|
|
|
2021-10-21 17:26:37 +03:00
|
|
|
[dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2022-03-02 02:02:04 +03:00
|
|
|
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553", optional = true }
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2023-08-18 18:57:19 +03:00
|
|
|
lsp-types = { git = "https://github.com/zed-industries/lsp-types", branch = "updated-completion-list-item-defaults" }
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smol.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
|
|
|
release_channel.workspace = true
|
2021-10-25 12:02:35 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-02 02:02:04 +03:00
|
|
|
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|