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