Cargo.toml

 1[package]
 2name = "vim"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/vim.rs"
 8doctest = false
 9
10[dependencies]
11assets = { path = "../assets" }
12collections = { path = "../collections" }
13command_palette = { path = "../command_palette" }
14editor = { path = "../editor" }
15gpui = { path = "../gpui" }
16language = { path = "../language" }
17search = { path = "../search" }
18serde = { version = "1.0", features = ["derive", "rc"] }
19settings = { path = "../settings" }
20workspace = { path = "../workspace" }
21itertools = "0.10"
22log = { version = "0.4.16", features = ["kv_unstable_serde"] }
23
24[dev-dependencies]
25indoc = "1.0.4"
26editor = { path = "../editor", features = ["test-support"] }
27gpui = { path = "../gpui", features = ["test-support"] }
28language = { path = "../language", features = ["test-support"] }
29project = { path = "../project", features = ["test-support"] }
30util = { path = "../util", features = ["test-support"] }
31settings = { path = "../settings" }
32workspace = { path = "../workspace", features = ["test-support"] }