chore: Move workspace dependencies to workspace.dependencies (#7454)

We should prefer referring to local deps via `.workspace = true` from
now on.

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-02-06 20:41:36 +01:00 committed by GitHub
parent 70e7ea365c
commit 743f9b345f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
74 changed files with 972 additions and 888 deletions

View file

@ -12,30 +12,30 @@ doctest = false
[dependencies]
anyhow.workspace = true
bitflags = "1"
collections = { path = "../collections" }
editor = { path = "../editor" }
collections.workspace = true
editor.workspace = true
futures.workspace = true
gpui = { path = "../gpui" }
language = { path = "../language" }
gpui.workspace = true
language.workspace = true
log.workspace = true
menu = { path = "../menu" }
menu.workspace = true
postage.workspace = true
project = { path = "../project" }
semantic_index = { path = "../semantic_index" }
project.workspace = true
semantic_index.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
settings = { path = "../settings" }
settings.workspace = true
smallvec.workspace = true
smol.workspace = true
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
workspace = { path = "../workspace" }
theme.workspace = true
ui.workspace = true
util.workspace = true
workspace.workspace = true
[dev-dependencies]
client = { path = "../client", features = ["test-support"] }
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
client = { workspace = true, features = ["test-support"] }
editor = { workspace = true, features = ["test-support"] }
gpui = { workspace = true, features = ["test-support"] }
unindent.workspace = true
workspace = { path = "../workspace", features = ["test-support"] }
workspace = { workspace = true, features = ["test-support"] }