mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
588976d27a
Co-authored-by: Mikayla <mikayla@zed.dev>
54 lines
2.0 KiB
TOML
54 lines
2.0 KiB
TOML
[package]
|
|
name = "vim"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/vim.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
itertools = "0.10"
|
|
log.workspace = true
|
|
|
|
async-compat = { version = "0.2.1", "optional" = true }
|
|
async-trait = { workspace = true, "optional" = true }
|
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
|
|
tokio = { version = "1.15", "optional" = true }
|
|
serde_json.workspace = true
|
|
|
|
collections = { path = "../collections" }
|
|
command_palette = { path = "../command_palette" }
|
|
editor = { path = "../editor" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
language = { package = "language2", path = "../language2" }
|
|
search = { path = "../search" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
ui = { package = "ui2", path = "../ui2"}
|
|
diagnostics = { path = "../diagnostics" }
|
|
zed_actions = { package = "zed_actions2", path = "../zed_actions2" }
|
|
|
|
[dev-dependencies]
|
|
indoc.workspace = true
|
|
parking_lot.workspace = true
|
|
futures.workspace = true
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
language = { package = "language2", path = "../language2", features = ["test-support"] }
|
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|
|
theme = { package = "theme2", path = "../theme2", features = ["test-support"] }
|
|
lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
|