2022-03-25 02:24:36 +00:00
|
|
|
[package]
|
|
|
|
name = "vim"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/vim.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-11 22:54:52 +00:00
|
|
|
assets = { path = "../assets" }
|
2022-03-25 02:24:36 +00:00
|
|
|
collections = { path = "../collections" }
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
2022-05-31 09:16:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-03-25 02:24:36 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2022-05-03 17:29:57 +00:00
|
|
|
itertools = "0.10"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2022-03-25 02:24:36 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-26 03:05:46 +00:00
|
|
|
indoc = "1.0.4"
|
2022-03-25 02:24:36 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2022-04-06 00:10:17 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-03-26 03:05:46 +00:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-03-25 02:24:36 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|