2022-03-25 05:24:36 +03:00
|
|
|
[package]
|
|
|
|
name = "vim"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-03-25 05:24:36 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/vim.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2022-10-06 06:19:30 +03:00
|
|
|
[features]
|
|
|
|
neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
|
|
|
|
|
2022-03-25 05:24:36 +03:00
|
|
|
[dependencies]
|
2023-05-12 00:40:35 +03:00
|
|
|
anyhow.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
itertools = "0.10"
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
|
|
|
|
async-compat = { version = "0.2.1", "optional" = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
async-trait = { workspace = true, "optional" = true }
|
2022-10-06 06:19:30 +03:00
|
|
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
|
|
|
|
tokio = { version = "1.15", "optional" = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
|
2022-04-12 01:54:52 +03:00
|
|
|
assets = { path = "../assets" }
|
2022-03-25 05:24:36 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-06-28 23:35:43 +03:00
|
|
|
command_palette = { path = "../command_palette" }
|
2022-03-25 05:24:36 +03:00
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
2022-06-30 22:32:53 +03:00
|
|
|
search = { path = "../search" }
|
2022-04-06 03:10:17 +03:00
|
|
|
settings = { path = "../settings" }
|
2022-03-25 05:24:36 +03:00
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-26 06:05:46 +03:00
|
|
|
indoc = "1.0.4"
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
|
|
|
lazy_static.workspace = true
|
2022-10-06 06:19:30 +03:00
|
|
|
|
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-11-16 01:45:04 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|