Hoist strum to workspace level (#15243)

This PR hoists `strum` up to a workspace dependency.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-25 21:30:48 -04:00 committed by GitHub
parent 2c610c0e57
commit 05003ed4c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,5 @@
[workspace] [workspace]
resolver = "2"
members = [ members = [
"crates/activity_indicator", "crates/activity_indicator",
"crates/anthropic", "crates/anthropic",
@ -157,11 +158,9 @@ members = [
"tooling/xtask", "tooling/xtask",
] ]
default-members = ["crates/zed"] default-members = ["crates/zed"]
resolver = "2"
[workspace.dependencies] [workspace.dependencies]
activity_indicator = { path = "crates/activity_indicator" } activity_indicator = { path = "crates/activity_indicator" }
aho-corasick = "1.1"
ai = { path = "crates/ai" } ai = { path = "crates/ai" }
anthropic = { path = "crates/anthropic" } anthropic = { path = "crates/anthropic" }
assets = { path = "crates/assets" } assets = { path = "crates/assets" }
@ -285,6 +284,7 @@ worktree = { path = "crates/worktree" }
zed = { path = "crates/zed" } zed = { path = "crates/zed" }
zed_actions = { path = "crates/zed_actions" } zed_actions = { path = "crates/zed_actions" }
aho-corasick = "1.1"
alacritty_terminal = "0.23" alacritty_terminal = "0.23"
any_vec = "0.14" any_vec = "0.14"
anyhow = "1.0.86" anyhow = "1.0.86"
@ -388,6 +388,7 @@ smallvec = { version = "1.6", features = ["union"] }
smol = "1.2" smol = "1.2"
strum = { version = "0.25.0", features = ["derive"] } strum = { version = "0.25.0", features = ["derive"] }
subtle = "2.5.0" subtle = "2.5.0"
sys-locale = "0.3.1"
sysinfo = "0.30.7" sysinfo = "0.30.7"
tempfile = "3.9.0" tempfile = "3.9.0"
thiserror = "1.0.29" thiserror = "1.0.29"
@ -442,7 +443,6 @@ wasmtime = { version = "21.0.1", default-features = false, features = [
wasmtime-wasi = "21.0.1" wasmtime-wasi = "21.0.1"
which = "6.0.0" which = "6.0.0"
wit-component = "0.201" wit-component = "0.201"
sys-locale = "0.3.1"
[workspace.dependencies.windows] [workspace.dependencies.windows]
version = "0.58" version = "0.58"

View File

@ -31,7 +31,7 @@ rust-embed.workspace = true
settings.workspace = true settings.workspace = true
simplelog.workspace = true simplelog.workspace = true
story.workspace = true story.workspace = true
strum = { version = "0.25.0", features = ["derive"] } strum = { workspace = true, features = ["derive"] }
theme.workspace = true theme.workspace = true
title_bar = { workspace = true, features = ["stories"] } title_bar = { workspace = true, features = ["stories"] }
ui = { workspace = true, features = ["stories"] } ui = { workspace = true, features = ["stories"] }

View File

@ -21,6 +21,6 @@ serde.workspace = true
serde_json.workspace = true serde_json.workspace = true
serde_json_lenient.workspace = true serde_json_lenient.workspace = true
simplelog.workspace= true simplelog.workspace= true
strum = { version = "0.25.0", features = ["derive"] } strum = { workspace = true, features = ["derive"] }
theme.workspace = true theme.workspace = true
vscode_theme = "0.2.0" vscode_theme = "0.2.0"

View File

@ -21,7 +21,7 @@ serde.workspace = true
settings.workspace = true settings.workspace = true
smallvec.workspace = true smallvec.workspace = true
story = { workspace = true, optional = true } story = { workspace = true, optional = true }
strum = { version = "0.25.0", features = ["derive"] } strum = { workspace = true, features = ["derive"] }
theme.workspace = true theme.workspace = true
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]