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
|
@ -20,11 +20,11 @@ doctest = false
|
|||
|
||||
[dependencies]
|
||||
anyhow.workspace = true
|
||||
color = { path = "../color" }
|
||||
color.workspace = true
|
||||
derive_more.workspace = true
|
||||
fs = { path = "../fs" }
|
||||
fs.workspace = true
|
||||
futures.workspace = true
|
||||
gpui = { path = "../gpui" }
|
||||
gpui.workspace = true
|
||||
indexmap = { version = "1.6.2", features = ["serde"] }
|
||||
itertools = { version = "0.11.0", optional = true }
|
||||
palette = { version = "0.7.3", default-features = false, features = ["std"] }
|
||||
|
@ -36,13 +36,13 @@ serde_derive.workspace = true
|
|||
serde_json.workspace = true
|
||||
serde_json_lenient.workspace = true
|
||||
serde_repr.workspace = true
|
||||
settings = { path = "../settings" }
|
||||
story = { path = "../story", optional = true }
|
||||
settings.workspace = true
|
||||
story = { workspace = true, optional = true }
|
||||
toml.workspace = true
|
||||
util = { path = "../util" }
|
||||
util.workspace = true
|
||||
uuid.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
fs = { path = "../fs", features = ["test-support"] }
|
||||
gpui = { path = "../gpui", features = ["test-support"] }
|
||||
settings = { path = "../settings", features = ["test-support"] }
|
||||
fs = { workspace = true, features = ["test-support"] }
|
||||
gpui = { workspace = true, features = ["test-support"] }
|
||||
settings = { workspace = true, features = ["test-support"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue