mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
23 lines
637 B
TOML
23 lines
637 B
TOML
|
[package]
|
||
|
name = "vim"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[lib]
|
||
|
path = "src/vim.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
collections = { path = "../collections" }
|
||
|
editor = { path = "../editor" }
|
||
|
gpui = { path = "../gpui" }
|
||
|
language = { path = "../language" }
|
||
|
workspace = { path = "../workspace" }
|
||
|
log = "0.4"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
editor = { path = "../editor", features = ["test-support"] }
|
||
|
gpui = { path = "../gpui", features = ["test-support"] }
|
||
|
project = { path = "../project", features = ["test-support"] }
|
||
|
language = { path = "../language", features = ["test-support"] }
|
||
|
workspace = { path = "../workspace", features = ["test-support"] }
|