🎨 Specify more dependencies at the workspace level

This commit is contained in:
Max Brunsfeld 2023-04-24 17:41:55 -07:00
parent b76194db97
commit ebbe52e6b0
66 changed files with 437 additions and 425 deletions

View file

@ -12,16 +12,16 @@ doctest = false
neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
[dependencies]
serde = { workspace = true }
serde_derive = { workspace = true }
serde.workspace = true
serde_derive.workspace = true
itertools = "0.10"
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
log.workspace = true
async-compat = { version = "0.2.1", "optional" = true }
async-trait = { version = "0.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 }
serde_json.workspace = true
assets = { path = "../assets" }
collections = { path = "../collections" }
@ -35,8 +35,8 @@ workspace = { path = "../workspace" }
[dev-dependencies]
indoc = "1.0.4"
parking_lot = "0.11.1"
lazy_static = "1.4"
parking_lot.workspace = true
lazy_static.workspace = true
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }