Cargo.toml

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