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:
parent
70e7ea365c
commit
743f9b345f
74 changed files with 972 additions and 888 deletions
|
@ -11,39 +11,39 @@ doctest = false
|
|||
|
||||
[dependencies]
|
||||
anyhow.workspace = true
|
||||
db = { path = "../db" }
|
||||
collections = { path = "../collections" }
|
||||
db.workspace = true
|
||||
collections.workspace = true
|
||||
dirs = "4.0.0"
|
||||
editor = { path = "../editor" }
|
||||
editor.workspace = true
|
||||
futures.workspace = true
|
||||
gpui = { path = "../gpui" }
|
||||
gpui.workspace = true
|
||||
itertools = "0.10"
|
||||
language = { path = "../language" }
|
||||
language.workspace = true
|
||||
lazy_static.workspace = true
|
||||
libc = "0.2"
|
||||
mio-extras = "2.0.6"
|
||||
ordered-float.workspace = true
|
||||
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
|
||||
project = { path = "../project" }
|
||||
search = { path = "../search" }
|
||||
project.workspace = true
|
||||
search.workspace = true
|
||||
serde.workspace = true
|
||||
serde_derive.workspace = true
|
||||
serde_json.workspace = true
|
||||
settings = { path = "../settings" }
|
||||
settings.workspace = true
|
||||
shellexpand = "2.1.0"
|
||||
smallvec.workspace = true
|
||||
smol.workspace = true
|
||||
terminal = { path = "../terminal" }
|
||||
theme = { path = "../theme" }
|
||||
terminal.workspace = true
|
||||
theme.workspace = true
|
||||
thiserror.workspace = true
|
||||
ui = { path = "../ui" }
|
||||
util = { path = "../util" }
|
||||
workspace = { path = "../workspace" }
|
||||
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"] }
|
||||
project = { path = "../project", features = ["test-support"] }
|
||||
client = { workspace = true, features = ["test-support"] }
|
||||
editor = { workspace = true, features = ["test-support"] }
|
||||
gpui = { workspace = true, features = ["test-support"] }
|
||||
project = { workspace = true, features = ["test-support"] }
|
||||
rand.workspace = true
|
||||
workspace = { path = "../workspace", features = ["test-support"] }
|
||||
workspace = { workspace = true, features = ["test-support"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue