Cargo.toml

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