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