Cargo.toml

 1[package]
 2name = "vim2"
 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 = { package = "command_palette2", path = "../command_palette2" }
29editor = { package = "editor2", path = "../editor2" }
30gpui = { package = "gpui2", path = "../gpui2" }
31language = { package = "language2", path = "../language2" }
32search = { package = "search2", path = "../search2" }
33settings = { package = "settings2", path = "../settings2" }
34workspace = { package = "workspace2", path = "../workspace2" }
35theme = { package = "theme2", path = "../theme2" }
36ui = { package = "ui2", path = "../ui2"}
37diagnostics = { package = "diagnostics2", path = "../diagnostics2" }
38zed_actions = { package = "zed_actions2", path = "../zed_actions2" }
39
40[dev-dependencies]
41indoc.workspace = true
42parking_lot.workspace = true
43futures.workspace = true
44
45editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
46gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
47language = { package = "language2", path = "../language2", features = ["test-support"] }
48project = { package = "project2", path = "../project2", features = ["test-support"] }
49util = { path = "../util", features = ["test-support"] }
50settings = { package = "settings2", path = "../settings2" }
51workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
52theme = { package = "theme2", path = "../theme2", features = ["test-support"] }
53lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }