Cargo.toml

 1[package]
 2name = "vim"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/vim.rs"
 8doctest = false
 9
10[features]
11neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
12
13[dependencies]
14serde = { version = "1.0", features = ["derive", "rc"] }
15itertools = "0.10"
16log = { version = "0.4.16", features = ["kv_unstable_serde"] }
17
18async-compat = { version = "0.2.1", "optional" = true }
19async-trait = { version = "0.1", "optional" = true }
20nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
21tokio = { version = "1.15", "optional" = true }
22serde_json = { version = "1.0", features = ["preserve_order"] }
23
24assets = { path = "../assets" }
25collections = { path = "../collections" }
26command_palette = { path = "../command_palette" }
27editor = { path = "../editor" }
28gpui = { path = "../gpui" }
29language = { path = "../language" }
30search = { path = "../search" }
31settings = { path = "../settings" }
32workspace = { path = "../workspace" }
33
34[dev-dependencies]
35indoc = "1.0.4"
36parking_lot = "0.11.1"
37lazy_static = "1.4"
38
39editor = { path = "../editor", features = ["test-support"] }
40gpui = { path = "../gpui", features = ["test-support"] }
41language = { path = "../language", features = ["test-support"] }
42project = { path = "../project", features = ["test-support"] }
43util = { path = "../util", features = ["test-support"] }
44settings = { path = "../settings" }
45workspace = { path = "../workspace", features = ["test-support"] }