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
|
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 }
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
|
|
|
command_palette.workspace = true
|
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.
|
2024-02-06 22:41:36 +03:00
|
|
|
copilot.workspace = true
|
|
|
|
editor.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
2024-02-15 00:38:07 +03:00
|
|
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = [
|
|
|
|
"use_tokio",
|
|
|
|
], optional = true }
|
2024-01-31 05:41:29 +03:00
|
|
|
regex.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
search.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
|
|
|
theme.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
tokio = { version = "1.15", "optional" = true }
|
2024-02-06 22:41:36 +03:00
|
|
|
ui.workspace = true
|
|
|
|
workspace.workspace = true
|
|
|
|
zed_actions.workspace = true
|
2024-02-22 20:12:29 +03:00
|
|
|
schemars.workspace = true
|
2022-03-25 05:24:36 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
release_channel.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
indoc.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
lsp = { workspace = true, features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
parking_lot.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|