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