2022-03-25 05:24:36 +03:00
|
|
|
[package]
|
|
|
|
name = "vim"
|
|
|
|
version = "0.1.0"
|
|
|
|
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
|
|
|
|
2022-03-25 05:24:36 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/vim.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2022-10-06 06:19:30 +03:00
|
|
|
[features]
|
|
|
|
neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
|
|
|
|
|
2022-03-25 05:24:36 +03:00
|
|
|
[dependencies]
|
2023-05-12 00:40:35 +03:00
|
|
|
anyhow.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
itertools = "0.10"
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
|
|
|
|
async-compat = { version = "0.2.1", "optional" = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
async-trait = { workspace = true, "optional" = true }
|
2022-10-06 06:19:30 +03:00
|
|
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
|
|
|
|
tokio = { version = "1.15", "optional" = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2024-01-19 20:35:25 +03:00
|
|
|
regex.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
|
2022-03-25 05:24:36 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-06-28 23:35:43 +03:00
|
|
|
command_palette = { path = "../command_palette" }
|
2024-01-30 22:08:20 +03:00
|
|
|
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
|
|
|
copilot = { path = "../copilot" }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language" }
|
2024-01-03 21:52:40 +03:00
|
|
|
search = { path = "../search" }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 23:41:01 +03:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 23:33:51 +03:00
|
|
|
ui = { path = "../ui"}
|
2023-09-21 00:24:31 +03:00
|
|
|
diagnostics = { path = "../diagnostics" }
|
2024-01-03 22:48:46 +03:00
|
|
|
zed_actions = { path = "../zed_actions" }
|
2022-03-25 05:24:36 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-23 08:11:22 +03:00
|
|
|
indoc.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
2023-08-22 01:10:13 +03:00
|
|
|
futures.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-03-26 06:05:46 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2024-01-03 23:41:01 +03:00
|
|
|
theme = { path = "../theme", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|