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
17async-compat = { version = "0.2.1", "optional" = true }
18async-trait = { workspace = true, "optional" = true }
19collections = { path = "../collections" }
20command_palette = { path = "../command_palette" }
21# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`.  See the attached comment on that type.
22copilot = { path = "../copilot" }
23diagnostics = { path = "../diagnostics" }
24editor = { path = "../editor" }
25gpui = { path = "../gpui" }
26itertools = "0.10"
27language = { path = "../language" }
28log.workspace = true
29nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
30regex.workspace = true
31search = { path = "../search" }
32serde.workspace = true
33serde_derive.workspace = true
34serde_json.workspace = true
35settings = { path = "../settings" }
36theme = { path = "../theme" }
37tokio = { version = "1.15", "optional" = true }
38ui = { path = "../ui" }
39workspace = { path = "../workspace" }
40zed_actions = { path = "../zed_actions" }
41
42[dev-dependencies]
43editor = { path = "../editor", features = ["test-support"] }
44futures.workspace = true
45gpui = { path = "../gpui", features = ["test-support"] }
46indoc.workspace = true
47language = { path = "../language", features = ["test-support"] }
48lsp = { path = "../lsp", features = ["test-support"] }
49parking_lot.workspace = true
50project = { path = "../project", features = ["test-support"] }
51settings = { path = "../settings" }
52theme = { path = "../theme", features = ["test-support"] }
53util = { path = "../util", features = ["test-support"] }
54workspace = { path = "../workspace", features = ["test-support"] }