mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 03:25:59 +00:00
7e5a3f9f6b
We're enabling the log crate feature everywhere, but only using it on the server for now. Co-Authored-By: Antonio Scandurra <me@as-cii.com>
27 lines
No EOL
833 B
TOML
27 lines
No EOL
833 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" }
|
|
settings = { path = "../settings" }
|
|
workspace = { path = "../workspace" }
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
|
|
[dev-dependencies]
|
|
indoc = "1.0.4"
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
settings = { path = "../settings" }
|
|
workspace = { path = "../workspace", features = ["test-support"] } |