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]
15serde = { version = "1.0", features = ["derive", "rc"] }
16itertools = "0.10"
17log = { version = "0.4.16", features = ["kv_unstable_serde"] }
18
19async-compat = { version = "0.2.1", "optional" = true }
20async-trait = { version = "0.1", "optional" = true }
21nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
22tokio = { version = "1.15", "optional" = true }
23serde_json = { version = "1.0", features = ["preserve_order"] }
24
25assets = { path = "../assets" }
26collections = { path = "../collections" }
27command_palette = { path = "../command_palette" }
28editor = { path = "../editor" }
29gpui = { path = "../gpui" }
30language = { path = "../language" }
31search = { path = "../search" }
32settings = { path = "../settings" }
33workspace = { path = "../workspace" }
34
35[dev-dependencies]
36indoc = "1.0.4"
37parking_lot = "0.11.1"
38lazy_static = "1.4"
39
40editor = { path = "../editor", features = ["test-support"] }
41gpui = { path = "../gpui", features = ["test-support"] }
42language = { path = "../language", features = ["test-support"] }
43project = { path = "../project", features = ["test-support"] }
44util = { path = "../util", features = ["test-support"] }
45settings = { path = "../settings" }
46workspace = { path = "../workspace", features = ["test-support"] }