Cargo.toml

 1[package]
 2name = "vim"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/vim.rs"
10doctest = false
11
12[features]
13neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
14
15[dependencies]
16anyhow.workspace = true
17serde.workspace = true
18serde_derive.workspace = true
19itertools = "0.10"
20log.workspace = true
21
22async-compat = { version = "0.2.1", "optional" = true }
23async-trait = { workspace = true, "optional" = true }
24nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
25tokio = { version = "1.15", "optional" = true }
26serde_json.workspace = true
27regex.workspace = true
28
29collections = { path = "../collections" }
30command_palette = { path = "../command_palette" }
31# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`.  See the attached comment on that type.
32copilot = { path = "../copilot" }
33editor = { path = "../editor" }
34gpui = { path = "../gpui" }
35language = { path = "../language" }
36search = { path = "../search" }
37settings = { path = "../settings" }
38workspace = { path = "../workspace" }
39theme = { path = "../theme" }
40ui = { path = "../ui"}
41diagnostics = { path = "../diagnostics" }
42zed_actions = { path = "../zed_actions" }
43
44[dev-dependencies]
45indoc.workspace = true
46parking_lot.workspace = true
47futures.workspace = true
48
49editor = { path = "../editor", features = ["test-support"] }
50gpui = { path = "../gpui", features = ["test-support"] }
51language = { path = "../language", features = ["test-support"] }
52project = { path = "../project", features = ["test-support"] }
53util = { path = "../util", features = ["test-support"] }
54settings = { path = "../settings" }
55workspace = { path = "../workspace", features = ["test-support"] }
56theme = { path = "../theme", features = ["test-support"] }
57lsp = { path = "../lsp", features = ["test-support"] }