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