Sort Cargo.toml
s (#25721)
This PR sorts some `Cargo.toml`s that had become unsorted. Release Notes: - N/A
This commit is contained in:
parent
6dacc751fc
commit
81badd1fe6
3 changed files with 9 additions and 9 deletions
|
@ -27,7 +27,6 @@ members = [
|
||||||
"crates/collab",
|
"crates/collab",
|
||||||
"crates/collab_ui",
|
"crates/collab_ui",
|
||||||
"crates/collections",
|
"crates/collections",
|
||||||
"crates/popover_button",
|
|
||||||
"crates/command_palette",
|
"crates/command_palette",
|
||||||
"crates/command_palette_hooks",
|
"crates/command_palette_hooks",
|
||||||
"crates/component",
|
"crates/component",
|
||||||
|
@ -99,6 +98,7 @@ members = [
|
||||||
"crates/panel",
|
"crates/panel",
|
||||||
"crates/paths",
|
"crates/paths",
|
||||||
"crates/picker",
|
"crates/picker",
|
||||||
|
"crates/popover_button",
|
||||||
"crates/prettier",
|
"crates/prettier",
|
||||||
"crates/project",
|
"crates/project",
|
||||||
"crates/project_panel",
|
"crates/project_panel",
|
||||||
|
@ -232,7 +232,6 @@ clock = { path = "crates/clock" }
|
||||||
collab = { path = "crates/collab" }
|
collab = { path = "crates/collab" }
|
||||||
collab_ui = { path = "crates/collab_ui" }
|
collab_ui = { path = "crates/collab_ui" }
|
||||||
collections = { path = "crates/collections" }
|
collections = { path = "crates/collections" }
|
||||||
popover_button = { path = "crates/popover_button" }
|
|
||||||
command_palette = { path = "crates/command_palette" }
|
command_palette = { path = "crates/command_palette" }
|
||||||
command_palette_hooks = { path = "crates/command_palette_hooks" }
|
command_palette_hooks = { path = "crates/command_palette_hooks" }
|
||||||
component = { path = "crates/component" }
|
component = { path = "crates/component" }
|
||||||
|
@ -303,6 +302,7 @@ outline_panel = { path = "crates/outline_panel" }
|
||||||
paths = { path = "crates/paths" }
|
paths = { path = "crates/paths" }
|
||||||
panel = { path = "crates/panel" }
|
panel = { path = "crates/panel" }
|
||||||
picker = { path = "crates/picker" }
|
picker = { path = "crates/picker" }
|
||||||
|
popover_button = { path = "crates/popover_button" }
|
||||||
plugin = { path = "crates/plugin" }
|
plugin = { path = "crates/plugin" }
|
||||||
plugin_macros = { path = "crates/plugin_macros" }
|
plugin_macros = { path = "crates/plugin_macros" }
|
||||||
prettier = { path = "crates/prettier" }
|
prettier = { path = "crates/prettier" }
|
||||||
|
|
|
@ -12,11 +12,14 @@ workspace = true
|
||||||
name = "git_ui"
|
name = "git_ui"
|
||||||
path = "src/git_ui.rs"
|
path = "src/git_ui.rs"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = []
|
||||||
|
test-support = ["multi_buffer/test-support"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
buffer_diff.workspace = true
|
buffer_diff.workspace = true
|
||||||
collections.workspace = true
|
collections.workspace = true
|
||||||
popover_button.workspace = true
|
|
||||||
db.workspace = true
|
db.workspace = true
|
||||||
editor.workspace = true
|
editor.workspace = true
|
||||||
feature_flags.workspace = true
|
feature_flags.workspace = true
|
||||||
|
@ -30,6 +33,7 @@ menu.workspace = true
|
||||||
multi_buffer.workspace = true
|
multi_buffer.workspace = true
|
||||||
panel.workspace = true
|
panel.workspace = true
|
||||||
picker.workspace = true
|
picker.workspace = true
|
||||||
|
popover_button.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project.workspace = true
|
project.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
|
@ -53,9 +57,5 @@ editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { workspace = true, features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
project = { workspace = true, features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
settings = { workspace = true, features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { workspace = true, features = ["test-support"] }
|
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
[features]
|
|
||||||
default = []
|
|
||||||
test-support = ["multi_buffer/test-support"]
|
|
||||||
|
|
|
@ -17,8 +17,8 @@ gpui.workspace = true
|
||||||
language_model.workspace = true
|
language_model.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
picker.workspace = true
|
picker.workspace = true
|
||||||
|
popover_button.workspace = true
|
||||||
proto.workspace = true
|
proto.workspace = true
|
||||||
ui.workspace = true
|
ui.workspace = true
|
||||||
workspace.workspace = true
|
workspace.workspace = true
|
||||||
zed_actions.workspace = true
|
zed_actions.workspace = true
|
||||||
popover_button.workspace = true
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue