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" }
15workspace = { path = "../workspace" }
16log = "0.4"
17
18[dev-dependencies]
19indoc = "1.0.4"
20editor = { path = "../editor", features = ["test-support"] }
21gpui = { path = "../gpui", features = ["test-support"] }
22project = { path = "../project", features = ["test-support"] }
23language = { path = "../language", features = ["test-support"] }
24util = { path = "../util", features = ["test-support"] }
25workspace = { path = "../workspace", features = ["test-support"] }