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" }
31editor = { path = "../editor" }
32gpui = { path = "../gpui" }
33language = { path = "../language" }
34search = { path = "../search" }
35settings = { path = "../settings" }
36workspace = { path = "../workspace" }
37theme = { path = "../theme" }
38ui = { path = "../ui"}
39diagnostics = { path = "../diagnostics" }
40zed_actions = { path = "../zed_actions" }
41
42[dev-dependencies]
43indoc.workspace = true
44parking_lot.workspace = true
45futures.workspace = true
46
47editor = { path = "../editor", features = ["test-support"] }
48gpui = { path = "../gpui", features = ["test-support"] }
49language = { path = "../language", features = ["test-support"] }
50project = { path = "../project", features = ["test-support"] }
51util = { path = "../util", features = ["test-support"] }
52settings = { path = "../settings" }
53workspace = { path = "../workspace", features = ["test-support"] }
54theme = { path = "../theme", features = ["test-support"] }
55lsp = { path = "../lsp", features = ["test-support"] }