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