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" }
17rope = { path = "../rope" }
18search = { path = "../search" }
19serde = { version = "1.0", features = ["derive", "rc"] }
20settings = { path = "../settings" }
21workspace = { path = "../workspace" }
22itertools = "0.10"
23log = { version = "0.4.16", features = ["kv_unstable_serde"] }
24
25[dev-dependencies]
26indoc = "1.0.4"
27editor = { path = "../editor", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29language = { path = "../language", features = ["test-support"] }
30project = { path = "../project", features = ["test-support"] }
31util = { path = "../util", features = ["test-support"] }
32settings = { path = "../settings" }
33workspace = { path = "../workspace", features = ["test-support"] }