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