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" }
36language_selector = { path = "../language_selector"}
37
38[dev-dependencies]
39indoc.workspace = true
40parking_lot.workspace = true
41futures.workspace = true
42
43editor = { path = "../editor", features = ["test-support"] }
44gpui = { path = "../gpui", features = ["test-support"] }
45language = { path = "../language", features = ["test-support"] }
46project = { path = "../project", features = ["test-support"] }
47util = { path = "../util", features = ["test-support"] }
48settings = { path = "../settings" }
49workspace = { path = "../workspace", features = ["test-support"] }
50theme = { path = "../theme", features = ["test-support"] }
51lsp = { path = "../lsp", features = ["test-support"] }