mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
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
84
Cargo.toml
84
Cargo.toml
@ -92,6 +92,90 @@ default-members = ["crates/zed"]
|
|||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
|
activity_indicator = { path = "crates/activity_indicator" }
|
||||||
|
ai = { path = "crates/ai" }
|
||||||
|
assets = { path = "crates/assets" }
|
||||||
|
assistant = { path = "crates/assistant" }
|
||||||
|
audio = { path = "crates/audio" }
|
||||||
|
auto_update = { path = "crates/auto_update" }
|
||||||
|
breadcrumbs = { path = "crates/breadcrumbs" }
|
||||||
|
call = { path = "crates/call" }
|
||||||
|
channel = { path = "crates/channel" }
|
||||||
|
cli = { path = "crates/cli" }
|
||||||
|
client = { path = "crates/client" }
|
||||||
|
clock = { path = "crates/clock" }
|
||||||
|
collab = { path = "crates/collab" }
|
||||||
|
collab_ui = { path = "crates/collab_ui" }
|
||||||
|
collections = { path = "crates/collections" }
|
||||||
|
color = { path = "crates/color" }
|
||||||
|
command_palette = { path = "crates/command_palette" }
|
||||||
|
copilot = { path = "crates/copilot" }
|
||||||
|
copilot_ui = { path = "crates/copilot_ui" }
|
||||||
|
db = { path = "crates/db" }
|
||||||
|
diagnostics = { path = "crates/diagnostics" }
|
||||||
|
editor = { path = "crates/editor" }
|
||||||
|
feature_flags = { path = "crates/feature_flags" }
|
||||||
|
feedback = { path = "crates/feedback" }
|
||||||
|
file_finder = { path = "crates/file_finder" }
|
||||||
|
fs = { path = "crates/fs" }
|
||||||
|
fsevent = { path = "crates/fsevent" }
|
||||||
|
fuzzy = { path = "crates/fuzzy" }
|
||||||
|
git = { path = "crates/git" }
|
||||||
|
go_to_line = { path = "crates/go_to_line" }
|
||||||
|
gpui = { path = "crates/gpui" }
|
||||||
|
gpui_macros = { path = "crates/gpui_macros" }
|
||||||
|
install_cli = { path = "crates/install_cli" }
|
||||||
|
journal = { path = "crates/journal" }
|
||||||
|
language = { path = "crates/language" }
|
||||||
|
language_selector = { path = "crates/language_selector" }
|
||||||
|
language_tools = { path = "crates/language_tools" }
|
||||||
|
live_kit_client = { path = "crates/live_kit_client" }
|
||||||
|
live_kit_server = { path = "crates/live_kit_server" }
|
||||||
|
lsp = { path = "crates/lsp" }
|
||||||
|
markdown_preview = { path = "crates/markdown_preview" }
|
||||||
|
media = { path = "crates/media" }
|
||||||
|
menu = { path = "crates/menu" }
|
||||||
|
multi_buffer = { path = "crates/multi_buffer" }
|
||||||
|
node_runtime = { path = "crates/node_runtime" }
|
||||||
|
notifications = { path = "crates/notifications" }
|
||||||
|
outline = { path = "crates/outline" }
|
||||||
|
picker = { path = "crates/picker" }
|
||||||
|
plugin = { path = "crates/plugin" }
|
||||||
|
plugin_macros = { path = "crates/plugin_macros" }
|
||||||
|
prettier = { path = "crates/prettier" }
|
||||||
|
project = { path = "crates/project" }
|
||||||
|
project_panel = { path = "crates/project_panel" }
|
||||||
|
project_symbols = { path = "crates/project_symbols" }
|
||||||
|
quick_action_bar = { path = "crates/quick_action_bar" }
|
||||||
|
recent_projects = { path = "crates/recent_projects" }
|
||||||
|
release_channel = { path = "crates/release_channel" }
|
||||||
|
rich_text = { path = "crates/rich_text" }
|
||||||
|
rope = { path = "crates/rope" }
|
||||||
|
rpc = { path = "crates/rpc" }
|
||||||
|
search = { path = "crates/search" }
|
||||||
|
semantic_index = { path = "crates/semantic_index" }
|
||||||
|
settings = { path = "crates/settings" }
|
||||||
|
snippet = { path = "crates/snippet" }
|
||||||
|
sqlez = { path = "crates/sqlez" }
|
||||||
|
sqlez_macros = { path = "crates/sqlez_macros" }
|
||||||
|
story = { path = "crates/story" }
|
||||||
|
storybook = { path = "crates/storybook" }
|
||||||
|
sum_tree = { path = "crates/sum_tree" }
|
||||||
|
terminal = { path = "crates/terminal" }
|
||||||
|
terminal_view = { path = "crates/terminal_view" }
|
||||||
|
text = { path = "crates/text" }
|
||||||
|
theme = { path = "crates/theme" }
|
||||||
|
theme_importer = { path = "crates/theme_importer" }
|
||||||
|
theme_selector = { path = "crates/theme_selector" }
|
||||||
|
ui = { path = "crates/ui" }
|
||||||
|
util = { path = "crates/util" }
|
||||||
|
vcs_menu = { path = "crates/vcs_menu" }
|
||||||
|
vim = { path = "crates/vim" }
|
||||||
|
welcome = { path = "crates/welcome" }
|
||||||
|
workspace = { path = "crates/workspace" }
|
||||||
|
zed = { path = "crates/zed" }
|
||||||
|
zed_actions = { path = "crates/zed_actions" }
|
||||||
|
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
async-compression = { version = "0.4", features = ["gzip", "futures-io"] }
|
async-compression = { version = "0.4", features = ["gzip", "futures-io"] }
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
|
@ -11,18 +11,18 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
auto_update = { path = "../auto_update" }
|
auto_update.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace", package = "workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -17,9 +17,9 @@ anyhow.workspace = true
|
|||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
bincode = "1.3.3"
|
bincode = "1.3.3"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
isahc.workspace = true
|
isahc.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
matrixmultiply = "0.3.7"
|
matrixmultiply = "0.3.7"
|
||||||
@ -33,7 +33,7 @@ rusqlite = { version = "0.29.0", features = ["blob", "array", "modern_sqlite"] }
|
|||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
tiktoken-rs.workspace = true
|
tiktoken-rs.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -7,5 +7,5 @@ license = "GPL-3.0-or-later"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
rust-embed.workspace = true
|
rust-embed.workspace = true
|
||||||
|
@ -10,44 +10,44 @@ path = "src/assistant.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ai = { path = "../ai" }
|
ai.workspace = true
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
chrono.workspace = true
|
chrono.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
isahc.workspace = true
|
isahc.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
multi_buffer = { path = "../multi_buffer" }
|
multi_buffer.workspace = true
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
semantic_index = { path = "../semantic_index" }
|
semantic_index.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tiktoken-rs.workspace = true
|
tiktoken-rs.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ai = { path = "../ai", features = ["test-support"] }
|
ai = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
|
@ -11,11 +11,11 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
derive_more.workspace = true
|
derive_more.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
rodio = { version = "0.17.1", default-features = false, features = ["wav"] }
|
rodio = { version = "0.17.1", default-features = false, features = ["wav"] }
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
@ -11,22 +11,22 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
isahc.workspace = true
|
isahc.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
@ -10,20 +10,20 @@ path = "src/breadcrumbs.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
outline = { path = "../outline" }
|
outline.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -22,33 +22,33 @@ test-support = [
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-broadcast = "0.4"
|
async-broadcast = "0.4"
|
||||||
audio = { path = "../audio" }
|
audio.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
live_kit_client = { path = "../live_kit_client" }
|
live_kit_client.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
media = { path = "../media" }
|
media.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
|
live_kit_client = { workspace = true, features = ["test-support"] }
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -14,42 +14,42 @@ test-support = ["collections/test-support", "gpui/test-support", "rpc/test-suppo
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
tiny_http = "0.8"
|
tiny_http = "0.8"
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -20,7 +20,7 @@ dirs = "3.0"
|
|||||||
ipc-channel = "0.16"
|
ipc-channel = "0.16"
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
core-foundation = "0.9"
|
core-foundation = "0.9"
|
||||||
|
@ -14,16 +14,16 @@ test-support = ["collections/test-support", "gpui/test-support", "rpc/test-suppo
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
|
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-recursion = "0.3"
|
async-recursion = "0.3"
|
||||||
@ -51,8 +51,8 @@ uuid.workspace = true
|
|||||||
url.workspace = true
|
url.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -22,15 +22,15 @@ axum-extra = { version = "0.3", features = ["erased-json"] }
|
|||||||
base64 = "0.13"
|
base64 = "0.13"
|
||||||
chrono.workspace = true
|
chrono.workspace = true
|
||||||
clap = { version = "3.1", features = ["derive"], optional = true }
|
clap = { version = "3.1", features = ["derive"], optional = true }
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
dashmap = "5.4"
|
dashmap = "5.4"
|
||||||
envy = "0.4.2"
|
envy = "0.4.2"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
hyper = "0.14"
|
hyper = "0.14"
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
lipsum = { version = "0.8", optional = true }
|
lipsum = { version = "0.8", optional = true }
|
||||||
live_kit_server = { path = "../live_kit_server" }
|
live_kit_server.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
nanoid = "0.4"
|
nanoid = "0.4"
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
@ -38,7 +38,7 @@ prometheus = "0.13"
|
|||||||
prost.workspace = true
|
prost.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
reqwest = { version = "0.11", features = ["json"], optional = true }
|
reqwest = { version = "0.11", features = ["json"], optional = true }
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
scrypt = "0.7"
|
scrypt = "0.7"
|
||||||
sea-orm = { version = "0.12.x", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls", "with-uuid"] }
|
sea-orm = { version = "0.12.x", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls", "with-uuid"] }
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
@ -47,7 +47,7 @@ serde_json.workspace = true
|
|||||||
sha-1 = "0.9"
|
sha-1 = "0.9"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
|
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
tokio-tungstenite = "0.17"
|
tokio-tungstenite = "0.17"
|
||||||
@ -57,44 +57,44 @@ tower = "0.4"
|
|||||||
tracing = "0.1.34"
|
tracing = "0.1.34"
|
||||||
tracing-log = "0.1.3"
|
tracing-log = "0.1.3"
|
||||||
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
audio = { path = "../audio" }
|
audio.workspace = true
|
||||||
call = { path = "../call", features = ["test-support"] }
|
call = { workspace = true, features = ["test-support"] }
|
||||||
channel = { path = "../channel" }
|
channel.workspace = true
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collab_ui = { path = "../collab_ui", features = ["test-support"] }
|
collab_ui = { workspace = true, features = ["test-support"] }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
file_finder = { path = "../file_finder" }
|
file_finder.workspace = true
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
git = { path = "../git", features = ["test-support"] }
|
git = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
|
live_kit_client = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
notifications = { path = "../notifications", features = ["test-support"] }
|
notifications = { workspace = true, features = ["test-support"] }
|
||||||
pretty_assertions.workspace = true
|
pretty_assertions.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
|
sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
sqlx = { version = "0.7", features = ["sqlite"] }
|
sqlx = { version = "0.7", features = ["sqlite"] }
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
seed-support = ["clap", "lipsum", "reqwest"]
|
seed-support = ["clap", "lipsum", "reqwest"]
|
||||||
|
@ -26,58 +26,58 @@ test-support = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
auto_update = { path = "../auto_update" }
|
auto_update.workspace = true
|
||||||
call = { path = "../call" }
|
call.workspace = true
|
||||||
channel = { path = "../channel" }
|
channel.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
feedback = { path = "../feedback" }
|
feedback.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
notifications = { path = "../notifications" }
|
notifications.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
recent_projects = { path = "../recent_projects" }
|
recent_projects.workspace = true
|
||||||
rich_text = { path = "../rich_text" }
|
rich_text.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
story = { path = "../story", optional = true }
|
story = { workspace = true, optional = true }
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
theme_selector = { path = "../theme_selector" }
|
theme_selector.workspace = true
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
vcs_menu = { path = "../vcs_menu" }
|
vcs_menu.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
zed_actions = { path = "../zed_actions" }
|
zed_actions.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
call = { path = "../call", features = ["test-support"] }
|
call = { workspace = true, features = ["test-support"] }
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
notifications = { path = "../notifications", features = ["test-support"] }
|
notifications = { workspace = true, features = ["test-support"] }
|
||||||
pretty_assertions.workspace = true
|
pretty_assertions.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
tree-sitter-markdown.workspace = true
|
tree-sitter-markdown.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -16,4 +16,4 @@ doctest = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
itertools = { version = "0.11.0", optional = true }
|
itertools = { version = "0.11.0", optional = true }
|
||||||
palette = "0.7.3"
|
palette = "0.7.3"
|
||||||
story = { path = "../story", optional = true }
|
story = { workspace = true, optional = true }
|
||||||
|
@ -11,32 +11,32 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
||||||
copilot = { path = "../copilot" }
|
copilot.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
zed_actions = { path = "../zed_actions" }
|
zed_actions.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
go_to_line = { path = "../go_to_line" }
|
go_to_line.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -23,28 +23,28 @@ test-support = [
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-compression.workspace = true
|
async-compression.workspace = true
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -11,19 +11,19 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
copilot = { path = "../copilot" }
|
copilot.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
zed_actions = { path = "../zed_actions" }
|
zed_actions.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -15,21 +15,21 @@ test-support = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sqlez = { path = "../sqlez" }
|
sqlez.workspace = true
|
||||||
sqlez_macros = { path = "../sqlez_macros" }
|
sqlez_macros.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
|
@ -11,32 +11,32 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
theme = { path = "../theme", features = ["test-support"] }
|
theme = { workspace = true, features = ["test-support"] }
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -26,68 +26,68 @@ test-support = [
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
aho-corasick = "1.1"
|
aho-corasick = "1.1"
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
convert_case = "0.6.0"
|
convert_case = "0.6.0"
|
||||||
copilot = { path = "../copilot" }
|
copilot.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
git = { path = "../git" }
|
git.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indoc = "1.0.4"
|
indoc = "1.0.4"
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
linkify = "0.10.0"
|
linkify = "0.10.0"
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
multi_buffer = { path = "../multi_buffer" }
|
multi_buffer.workspace = true
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
rich_text = { path = "../rich_text" }
|
rich_text.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
snippet = { path = "../snippet" }
|
snippet.workspace = true
|
||||||
sqlez = { path = "../sqlez" }
|
sqlez.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tree-sitter-html = { workspace = true, optional = true }
|
tree-sitter-html = { workspace = true, optional = true }
|
||||||
tree-sitter-rust = { workspace = true, optional = true }
|
tree-sitter-rust = { workspace = true, optional = true }
|
||||||
tree-sitter-typescript = { workspace = true, optional = true }
|
tree-sitter-typescript = { workspace = true, optional = true }
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
copilot = { path = "../copilot", features = ["test-support"] }
|
copilot = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
multi_buffer = { path = "../multi_buffer", features = ["test-support"] }
|
multi_buffer = { workspace = true, features = ["test-support"] }
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
text = { path = "../text", features = ["test-support"] }
|
text = { workspace = true, features = ["test-support"] }
|
||||||
tree-sitter-html.workspace = true
|
tree-sitter-html.workspace = true
|
||||||
tree-sitter-rust.workspace = true
|
tree-sitter-rust.workspace = true
|
||||||
tree-sitter-typescript.workspace = true
|
tree-sitter-typescript.workspace = true
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,4 +10,4 @@ path = "src/feature_flags.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
|
@ -14,34 +14,34 @@ test-support = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
bitflags = "2.4.1"
|
bitflags = "2.4.1"
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
human_bytes = "0.4.1"
|
human_bytes = "0.4.1"
|
||||||
isahc.workspace = true
|
isahc.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sysinfo.workspace = true
|
sysinfo.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
|
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
urlencoding = "2.1.2"
|
urlencoding = "2.1.2"
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -11,29 +11,29 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = "0.11"
|
itertools = "0.11"
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
theme = { path = "../theme", features = ["test-support"] }
|
theme = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -9,11 +9,11 @@ license = "GPL-3.0-or-later"
|
|||||||
path = "src/fs.rs"
|
path = "src/fs.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
rope = { path = "../rope" }
|
rope.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
|
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
@ -31,16 +31,16 @@ log.workspace = true
|
|||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
|
|
||||||
gpui = { path = "../gpui", optional = true}
|
gpui = { workspace = true, optional = true}
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
fsevent = { path = "../fsevent" }
|
fsevent.workspace = true
|
||||||
|
|
||||||
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
||||||
notify = "6.1.1"
|
notify = "6.1.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test-support = ["gpui/test-support"]
|
test-support = ["gpui/test-support"]
|
||||||
|
@ -10,5 +10,5 @@ path = "src/fuzzy.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
@ -11,17 +11,17 @@ path = "src/git.rs"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
git2.workspace = true
|
git2.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
|
@ -10,17 +10,17 @@ path = "src/go_to_line.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -26,14 +26,14 @@ anyhow.workspace = true
|
|||||||
async-task = "4.7"
|
async-task = "4.7"
|
||||||
backtrace = { version = "0.3", optional = true }
|
backtrace = { version = "0.3", optional = true }
|
||||||
bitflags = "2.4.0"
|
bitflags = "2.4.0"
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
derive_more.workspace = true
|
derive_more.workspace = true
|
||||||
dhat = { version = "0.3", optional = true }
|
dhat = { version = "0.3", optional = true }
|
||||||
env_logger = { version = "0.9", optional = true }
|
env_logger = { version = "0.9", optional = true }
|
||||||
etagere = "0.2"
|
etagere = "0.2"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui_macros = { path = "../gpui_macros" }
|
gpui_macros.workspace = true
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
@ -57,24 +57,24 @@ serde_json.workspace = true
|
|||||||
slotmap = "1.0.6"
|
slotmap = "1.0.6"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "1876f72bee5e376023eaa518aa7b8a34c769bd1b" }
|
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "1876f72bee5e376023eaa518aa7b8a34c769bd1b" }
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
tiny-skia = "0.5"
|
tiny-skia = "0.5"
|
||||||
usvg = { version = "0.14", features = [] }
|
usvg = { version = "0.14", features = [] }
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid = { version = "1.1.2", features = ["v4"] }
|
uuid = { version = "1.1.2", features = ["v4"] }
|
||||||
waker-fn = "1.1.0"
|
waker-fn = "1.1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
dhat = "0.3"
|
dhat = "0.3"
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
png = "0.16"
|
png = "0.16"
|
||||||
simplelog = "0.9"
|
simplelog = "0.9"
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.65.1"
|
bindgen = "0.65.1"
|
||||||
@ -89,6 +89,6 @@ core-text = "19.2"
|
|||||||
font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "d97147f" }
|
font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "d97147f" }
|
||||||
foreign-types = "0.3"
|
foreign-types = "0.3"
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
media = { path = "../media" }
|
media.workspace = true
|
||||||
metal = "0.21.0"
|
metal = "0.21.0"
|
||||||
objc = "0.2"
|
objc = "0.2"
|
||||||
|
@ -13,7 +13,7 @@ test-support = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
@ -13,15 +13,15 @@ doctest = false
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
dirs = "4.0"
|
dirs = "4.0"
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
shellexpand = "2.1.0"
|
shellexpand = "2.1.0"
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -26,50 +26,50 @@ test-support = [
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-broadcast = "0.4"
|
async-broadcast = "0.4"
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
git = { path = "../git" }
|
git.workspace = true
|
||||||
globset.workspace = true
|
globset.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
rand = { workspace = true, optional = true }
|
rand = { workspace = true, optional = true }
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
similar = "1.3"
|
similar = "1.3"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tree-sitter-rust = { workspace = true, optional = true }
|
tree-sitter-rust = { workspace = true, optional = true }
|
||||||
tree-sitter-typescript = { workspace = true, optional = true }
|
tree-sitter-typescript = { workspace = true, optional = true }
|
||||||
pulldown-cmark.workspace = true
|
pulldown-cmark.workspace = true
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
unicase = "2.6"
|
unicase = "2.6"
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
text = { path = "../text", features = ["test-support"] }
|
text = { workspace = true, features = ["test-support"] }
|
||||||
tree-sitter-elixir.workspace = true
|
tree-sitter-elixir.workspace = true
|
||||||
tree-sitter-embedded-template.workspace = true
|
tree-sitter-embedded-template.workspace = true
|
||||||
tree-sitter-heex.workspace = true
|
tree-sitter-heex.workspace = true
|
||||||
@ -81,4 +81,4 @@ tree-sitter-ruby.workspace = true
|
|||||||
tree-sitter-rust.workspace = true
|
tree-sitter-rust.workspace = true
|
||||||
tree-sitter-typescript.workspace = true
|
tree-sitter-typescript.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -11,17 +11,17 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -11,27 +11,27 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -26,12 +26,12 @@ test-support = [
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-broadcast = "0.4"
|
async-broadcast = "0.4"
|
||||||
async-trait = { workspace = true, optional = true }
|
async-trait = { workspace = true, optional = true }
|
||||||
collections = { path = "../collections", optional = true }
|
collections = { workspace = true, optional = true }
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui", optional = true }
|
gpui = { workspace = true, optional = true }
|
||||||
live_kit_server = { path = "../live_kit_server", optional = true }
|
live_kit_server = { workspace = true, optional = true }
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
media = { path = "../media" }
|
media.workspace = true
|
||||||
nanoid = { version ="0.4", optional = true}
|
nanoid = { version ="0.4", optional = true}
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
@ -41,9 +41,9 @@ core-foundation = "0.9.3"
|
|||||||
|
|
||||||
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
||||||
async-trait = { workspace = true }
|
async-trait = { workspace = true }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
live_kit_server = { path = "../live_kit_server" }
|
live_kit_server.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
@ -51,14 +51,14 @@ async-trait.workspace = true
|
|||||||
block = "0.1"
|
block = "0.1"
|
||||||
byteorder = "1.4"
|
byteorder = "1.4"
|
||||||
bytes = "1.2"
|
bytes = "1.2"
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
foreign-types = "0.3"
|
foreign-types = "0.3"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
hmac = "0.12"
|
hmac = "0.12"
|
||||||
jwt = "0.16"
|
jwt = "0.16"
|
||||||
live_kit_server = { path = "../live_kit_server" }
|
live_kit_server.workspace = true
|
||||||
media = { path = "../media" }
|
media.workspace = true
|
||||||
nanoid = "0.4"
|
nanoid = "0.4"
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
|
@ -15,9 +15,9 @@ test-support = ["async-pipe"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553", optional = true }
|
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553", optional = true }
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp-types = { git = "https://github.com/zed-industries/lsp-types", branch = "updated-completion-list-item-defaults" }
|
lsp-types = { git = "https://github.com/zed-industries/lsp-types", branch = "updated-completion-list-item-defaults" }
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
@ -26,13 +26,13 @@ serde.workspace = true
|
|||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
|
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -13,19 +13,19 @@ test-support = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
pulldown-cmark.workspace = true
|
pulldown-cmark.workspace = true
|
||||||
rich_text = { path = "../rich_text" }
|
rich_text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,5 +10,5 @@ path = "src/menu.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
|
@ -23,54 +23,54 @@ test-support = [
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
aho-corasick = "1.1"
|
aho-corasick = "1.1"
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
convert_case = "0.6.0"
|
convert_case = "0.6.0"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
git = { path = "../git" }
|
git.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indoc = "1.0.4"
|
indoc = "1.0.4"
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
pulldown-cmark.workspace = true
|
pulldown-cmark.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
rich_text = { path = "../rich_text" }
|
rich_text.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
snippet = { path = "../snippet" }
|
snippet.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tree-sitter-html = { workspace = true, optional = true }
|
tree-sitter-html = { workspace = true, optional = true }
|
||||||
tree-sitter-rust = { workspace = true, optional = true }
|
tree-sitter-rust = { workspace = true, optional = true }
|
||||||
tree-sitter-typescript = { workspace = true, optional = true }
|
tree-sitter-typescript = { workspace = true, optional = true }
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
copilot = { path = "../copilot", features = ["test-support"] }
|
copilot = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
text = { path = "../text", features = ["test-support"] }
|
text = { workspace = true, features = ["test-support"] }
|
||||||
tree-sitter-html.workspace = true
|
tree-sitter-html.workspace = true
|
||||||
tree-sitter-rust.workspace = true
|
tree-sitter-rust.workspace = true
|
||||||
tree-sitter-typescript.workspace = true
|
tree-sitter-typescript.workspace = true
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -21,4 +21,4 @@ serde.workspace = true
|
|||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
@ -19,24 +19,24 @@ test-support = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
channel = { path = "../channel" }
|
channel.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
time.workspace = true
|
time.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,20 +10,20 @@ path = "src/outline.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,19 +10,19 @@ path = "src/picker.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
|
@ -7,6 +7,6 @@ license = "GPL-3.0-or-later"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bincode = "1.3"
|
bincode = "1.3"
|
||||||
plugin_macros = { path = "../plugin_macros" }
|
plugin_macros.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
|
@ -14,22 +14,22 @@ test-support = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -25,62 +25,62 @@ aho-corasick = "1.1"
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
copilot = { path = "../copilot" }
|
copilot.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
fsevent = { path = "../fsevent" }
|
fsevent.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
git = { path = "../git" }
|
git.workspace = true
|
||||||
globset.workspace = true
|
globset.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
ignore = "0.4"
|
ignore = "0.4"
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
prettier = { path = "../prettier" }
|
prettier.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
similar = "1.3"
|
similar = "1.3"
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
terminal = { path = "../terminal" }
|
terminal.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
db = { path = "../db", features = ["test-support"] }
|
db = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
git2.workspace = true
|
git2.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
prettier = { path = "../prettier", features = ["test-support"] }
|
prettier = { workspace = true, features = ["test-support"] }
|
||||||
pretty_assertions.workspace = true
|
pretty_assertions.workspace = true
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -11,33 +11,33 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
pretty_assertions.workspace = true
|
pretty_assertions.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
unicase = "2.6"
|
unicase = "2.6"
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
workspace = { path = "../workspace", package = "workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -11,29 +11,29 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
theme = { path = "../theme", features = ["test-support"] }
|
theme = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,15 +10,15 @@ path = "src/quick_action_bar.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
assistant = { path = "../assistant" }
|
assistant.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,21 +10,21 @@ path = "src/recent_projects.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -6,5 +6,5 @@ publish = false
|
|||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.19.0"
|
||||||
|
@ -17,15 +17,15 @@ test-support = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
pulldown-cmark.workspace = true
|
pulldown-cmark.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
@ -13,10 +13,10 @@ arrayvec = "0.7.1"
|
|||||||
bromberg_sl2 = { git = "https://github.com/zed-industries/bromberg_sl2", rev = "950bc5482c216c395049ae33ae4501e08975f17f" }
|
bromberg_sl2 = { git = "https://github.com/zed-industries/bromberg_sl2", rev = "950bc5482c216c395049ae33ae4501e08975f17f" }
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -18,10 +18,10 @@ anyhow.workspace = true
|
|||||||
async-lock = "2.4"
|
async-lock = "2.4"
|
||||||
async-tungstenite = "0.16"
|
async-tungstenite = "0.16"
|
||||||
base64 = "0.13"
|
base64 = "0.13"
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui", optional = true }
|
gpui = { workspace = true, optional = true }
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
prost.workspace = true
|
prost.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
@ -32,16 +32,16 @@ serde_json.workspace = true
|
|||||||
smol-timeout = "0.6"
|
smol-timeout = "0.6"
|
||||||
strum.workspace = true
|
strum.workspace = true
|
||||||
tracing = { version = "0.1.34", features = ["log"] }
|
tracing = { version = "0.1.34", features = ["log"] }
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
zstd = "0.11"
|
zstd = "0.11"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
prost-build = "0.9"
|
prost-build = "0.9"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
|
@ -12,30 +12,30 @@ doctest = false
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
bitflags = "1"
|
bitflags = "1"
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
semantic_index = { path = "../semantic_index" }
|
semantic_index.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,51 +10,51 @@ path = "src/semantic_index.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ai = { path = "../ai" }
|
ai.workspace = true
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
globset.workspace = true
|
globset.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
ndarray = { version = "0.15.0" }
|
ndarray = { version = "0.15.0" }
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
rusqlite.workspace = true
|
rusqlite.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
sha1 = "0.10.5"
|
sha1 = "0.10.5"
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
tiktoken-rs.workspace = true
|
tiktoken-rs.workspace = true
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ai = { path = "../ai", features = ["test-support"] }
|
ai = { workspace = true, features = ["test-support"] }
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
pretty_assertions.workspace = true
|
pretty_assertions.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
rpc = { path = "../rpc", features = ["test-support"] }
|
rpc = { workspace = true, features = ["test-support"] }
|
||||||
rust-embed.workspace = true
|
rust-embed.workspace = true
|
||||||
settings = { path = "../settings", features = ["test-support"]}
|
settings = { workspace = true, features = ["test-support"]}
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
tree-sitter-cpp.workspace = true
|
tree-sitter-cpp.workspace = true
|
||||||
tree-sitter-elixir.workspace = true
|
tree-sitter-elixir.workspace = true
|
||||||
@ -66,4 +66,4 @@ tree-sitter-rust.workspace = true
|
|||||||
tree-sitter-toml.workspace = true
|
tree-sitter-toml.workspace = true
|
||||||
tree-sitter-typescript.workspace = true
|
tree-sitter-typescript.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -14,14 +14,14 @@ test-support = ["gpui/test-support", "fs/test-support"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
rust-embed.workspace = true
|
rust-embed.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
@ -32,11 +32,11 @@ smallvec.workspace = true
|
|||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
tree-sitter-json = "*"
|
tree-sitter-json = "*"
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
pretty_assertions.workspace = true
|
pretty_assertions.workspace = true
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
|
@ -14,5 +14,5 @@ libsqlite3-sys = { version = "0.26", features = ["bundled"] }
|
|||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
thread_local = "1.1.4"
|
thread_local = "1.1.4"
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
@ -14,6 +14,6 @@ doctest = false
|
|||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
sqlez = { path = "../sqlez" }
|
sqlez.workspace = true
|
||||||
sqlformat = "0.2"
|
sqlformat = "0.2"
|
||||||
syn = "1.0"
|
syn = "1.0"
|
||||||
|
@ -6,6 +6,6 @@ publish = false
|
|||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = { package = "itertools", version = "0.10" }
|
itertools = { package = "itertools", version = "0.10" }
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
|
@ -15,28 +15,28 @@ anyhow.workspace = true
|
|||||||
backtrace-on-stack-overflow = "0.3.0"
|
backtrace-on-stack-overflow = "0.3.0"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
clap = { version = "4.4", features = ["derive", "string"] }
|
clap = { version = "4.4", features = ["derive", "string"] }
|
||||||
collab_ui = { path = "../collab_ui", features = ["stories"] }
|
collab_ui = { workspace = true, features = ["stories"] }
|
||||||
ctrlc = "3.4"
|
ctrlc = "3.4"
|
||||||
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
itertools = "0.11.0"
|
itertools = "0.11.0"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
rust-embed.workspace = true
|
rust-embed.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
simplelog = "0.9"
|
simplelog = "0.9"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
story = { path = "../story" }
|
story.workspace = true
|
||||||
strum = { version = "0.25.0", features = ["derive"] }
|
strum = { version = "0.25.0", features = ["derive"] }
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui", features = ["stories"] }
|
ui = { workspace = true, features = ["stories"] }
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -14,10 +14,10 @@ doctest = false
|
|||||||
# needed for "a few weeks" until alacritty 0.13.2 is out
|
# needed for "a few weeks" until alacritty 0.13.2 is out
|
||||||
alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "2d2b894c3b869fadc78fce9d72cb5c8d2b764cac" }
|
alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "2d2b894c3b869fadc78fce9d72cb5c8d2b764cac" }
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
@ -28,13 +28,13 @@ schemars.workspace = true
|
|||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
shellexpand = "2.1.0"
|
shellexpand = "2.1.0"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
|
@ -11,39 +11,39 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
mio-extras = "2.0.6"
|
mio-extras = "2.0.6"
|
||||||
ordered-float.workspace = true
|
ordered-float.workspace = true
|
||||||
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
|
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
shellexpand = "2.1.0"
|
shellexpand = "2.1.0"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
terminal = { path = "../terminal" }
|
terminal.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -14,8 +14,8 @@ test-support = ["rand"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
clock = { path = "../clock" }
|
clock.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
digest = { version = "0.9", features = ["std"] }
|
digest = { version = "0.9", features = ["std"] }
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
@ -23,15 +23,15 @@ parking_lot.workspace = true
|
|||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
rand = { workspace = true, optional = true }
|
rand = { workspace = true, optional = true }
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
rope = { path = "../rope" }
|
rope.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
collections = { path = "../collections", features = ["test-support"] }
|
collections = { workspace = true, features = ["test-support"] }
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -20,11 +20,11 @@ doctest = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
color = { path = "../color" }
|
color.workspace = true
|
||||||
derive_more.workspace = true
|
derive_more.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indexmap = { version = "1.6.2", features = ["serde"] }
|
indexmap = { version = "1.6.2", features = ["serde"] }
|
||||||
itertools = { version = "0.11.0", optional = true }
|
itertools = { version = "0.11.0", optional = true }
|
||||||
palette = { version = "0.7.3", default-features = false, features = ["std"] }
|
palette = { version = "0.7.3", default-features = false, features = ["std"] }
|
||||||
@ -36,13 +36,13 @@ serde_derive.workspace = true
|
|||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_json_lenient.workspace = true
|
serde_json_lenient.workspace = true
|
||||||
serde_repr.workspace = true
|
serde_repr.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
story = { path = "../story", optional = true }
|
story = { workspace = true, optional = true }
|
||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -10,7 +10,7 @@ any_ascii = "0.3.2"
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
clap = { version = "4.4", features = ["derive"] }
|
clap = { version = "4.4", features = ["derive"] }
|
||||||
convert_case = "0.6.0"
|
convert_case = "0.6.0"
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
indexmap = { version = "1.6.2", features = ["serde"] }
|
indexmap = { version = "1.6.2", features = ["serde"] }
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
@ -23,6 +23,6 @@ serde_json.workspace = true
|
|||||||
serde_json_lenient.workspace = true
|
serde_json_lenient.workspace = true
|
||||||
simplelog = "0.9"
|
simplelog = "0.9"
|
||||||
strum = { version = "0.25.0", features = ["derive"] }
|
strum = { version = "0.25.0", features = ["derive"] }
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
vscode_theme = "0.2.0"
|
vscode_theme = "0.2.0"
|
||||||
|
@ -10,22 +10,22 @@ path = "src/theme_selector.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -12,16 +12,16 @@ path = "src/ui.rs"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = { version = "0.11.0", optional = true }
|
itertools = { version = "0.11.0", optional = true }
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
story = { path = "../story", optional = true }
|
story = { workspace = true, optional = true }
|
||||||
strum = { version = "0.25.0", features = ["derive"] }
|
strum = { version = "0.25.0", features = ["derive"] }
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
@ -7,10 +7,10 @@ license = "GPL-3.0-or-later"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
@ -16,40 +16,40 @@ neovim = ["nvim-rs", "async-compat", "async-trait", "tokio"]
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-compat = { version = "0.2.1", "optional" = true }
|
async-compat = { version = "0.2.1", "optional" = true }
|
||||||
async-trait = { workspace = true, "optional" = true }
|
async-trait = { workspace = true, "optional" = true }
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
command_palette = { path = "../command_palette" }
|
command_palette.workspace = true
|
||||||
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`. See the attached comment on that type.
|
||||||
copilot = { path = "../copilot" }
|
copilot.workspace = true
|
||||||
diagnostics = { path = "../diagnostics" }
|
diagnostics.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
|
nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"], optional = true }
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
tokio = { version = "1.15", "optional" = true }
|
tokio = { version = "1.15", "optional" = true }
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
zed_actions = { path = "../zed_actions" }
|
zed_actions.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
lsp = { path = "../lsp", features = ["test-support"] }
|
lsp = { workspace = true, features = ["test-support"] }
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme", features = ["test-support"] }
|
theme = { workspace = true, features = ["test-support"] }
|
||||||
util = { path = "../util", features = ["test-support"] }
|
util = { workspace = true, features = ["test-support"] }
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -13,25 +13,25 @@ test-support = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
install_cli = { path = "../install_cli" }
|
install_cli.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
picker = { path = "../picker" }
|
picker.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
theme_selector = { path = "../theme_selector" }
|
theme_selector.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
vim = { path = "../vim" }
|
vim.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -23,43 +23,43 @@ test-support = [
|
|||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
async-recursion = "1.0.0"
|
async-recursion = "1.0.0"
|
||||||
bincode = "1.2.1"
|
bincode = "1.2.1"
|
||||||
call = { path = "../call" }
|
call.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
derive_more.workspace = true
|
derive_more.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
install_cli = { path = "../install_cli" }
|
install_cli.workspace = true
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
sqlez = { path = "../sqlez" }
|
sqlez.workspace = true
|
||||||
terminal = { path = "../terminal" }
|
terminal.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
ui = { path = "../ui" }
|
ui.workspace = true
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
call = { path = "../call", features = ["test-support"] }
|
call = { workspace = true, features = ["test-support"] }
|
||||||
client = { path = "../client", features = ["test-support"] }
|
client = { workspace = true, features = ["test-support"] }
|
||||||
db = { path = "../db", features = ["test-support"] }
|
db = { workspace = true, features = ["test-support"] }
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
fs = { path = "../fs", features = ["test-support"] }
|
fs = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
indoc.workspace = true
|
indoc.workspace = true
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
settings = { path = "../settings", features = ["test-support"] }
|
settings = { workspace = true, features = ["test-support"] }
|
||||||
|
@ -16,94 +16,94 @@ name = "Zed"
|
|||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
activity_indicator = { path = "../activity_indicator" }
|
activity_indicator.workspace = true
|
||||||
ai = { path = "../ai" }
|
ai.workspace = true
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
assets = { path = "../assets" }
|
assets.workspace = true
|
||||||
assistant = { path = "../assistant" }
|
assistant.workspace = true
|
||||||
async-compression.workspace = true
|
async-compression.workspace = true
|
||||||
async-recursion = "0.3"
|
async-recursion = "0.3"
|
||||||
async-tar = "0.4.2"
|
async-tar = "0.4.2"
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
audio = { path = "../audio" }
|
audio.workspace = true
|
||||||
auto_update = { path = "../auto_update" }
|
auto_update.workspace = true
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
breadcrumbs = { path = "../breadcrumbs" }
|
breadcrumbs.workspace = true
|
||||||
call = { path = "../call" }
|
call.workspace = true
|
||||||
channel = { path = "../channel" }
|
channel.workspace = true
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
cli = { path = "../cli" }
|
cli.workspace = true
|
||||||
client = { path = "../client" }
|
client.workspace = true
|
||||||
collab_ui = { path = "../collab_ui" }
|
collab_ui.workspace = true
|
||||||
collections = { path = "../collections" }
|
collections.workspace = true
|
||||||
command_palette = { path = "../command_palette" }
|
command_palette.workspace = true
|
||||||
copilot = { path = "../copilot" }
|
copilot.workspace = true
|
||||||
copilot_ui = { path = "../copilot_ui" }
|
copilot_ui.workspace = true
|
||||||
ctor.workspace = true
|
ctor.workspace = true
|
||||||
db = { path = "../db" }
|
db.workspace = true
|
||||||
diagnostics = { path = "../diagnostics" }
|
diagnostics.workspace = true
|
||||||
editor = { path = "../editor" }
|
editor.workspace = true
|
||||||
env_logger.workspace = true
|
env_logger.workspace = true
|
||||||
feature_flags = { path = "../feature_flags" }
|
feature_flags.workspace = true
|
||||||
feedback = { path = "../feedback" }
|
feedback.workspace = true
|
||||||
file_finder = { path = "../file_finder" }
|
file_finder.workspace = true
|
||||||
fs = { path = "../fs" }
|
fs.workspace = true
|
||||||
fsevent = { path = "../fsevent" }
|
fsevent.workspace = true
|
||||||
futures.workspace = true
|
futures.workspace = true
|
||||||
go_to_line = { path = "../go_to_line" }
|
go_to_line.workspace = true
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
ignore = "0.4"
|
ignore = "0.4"
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
indexmap = "1.6.2"
|
indexmap = "1.6.2"
|
||||||
install_cli = { path = "../install_cli" }
|
install_cli.workspace = true
|
||||||
isahc.workspace = true
|
isahc.workspace = true
|
||||||
itertools = "0.11"
|
itertools = "0.11"
|
||||||
journal = { path = "../journal" }
|
journal.workspace = true
|
||||||
language = { path = "../language" }
|
language.workspace = true
|
||||||
language_selector = { path = "../language_selector" }
|
language_selector.workspace = true
|
||||||
language_tools = { path = "../language_tools" }
|
language_tools.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
log.workspace = true
|
log.workspace = true
|
||||||
lsp = { path = "../lsp" }
|
lsp.workspace = true
|
||||||
markdown_preview = { path = "../markdown_preview" }
|
markdown_preview.workspace = true
|
||||||
menu = { path = "../menu" }
|
menu.workspace = true
|
||||||
mimalloc = "0.1"
|
mimalloc = "0.1"
|
||||||
node_runtime = { path = "../node_runtime" }
|
node_runtime.workspace = true
|
||||||
notifications = { path = "../notifications" }
|
notifications.workspace = true
|
||||||
num_cpus = "1.13.0"
|
num_cpus = "1.13.0"
|
||||||
outline = { path = "../outline" }
|
outline.workspace = true
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
postage.workspace = true
|
postage.workspace = true
|
||||||
project = { path = "../project" }
|
project.workspace = true
|
||||||
project_panel = { path = "../project_panel" }
|
project_panel.workspace = true
|
||||||
project_symbols = { path = "../project_symbols" }
|
project_symbols.workspace = true
|
||||||
quick_action_bar = { path = "../quick_action_bar" }
|
quick_action_bar.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
recent_projects = { path = "../recent_projects" }
|
recent_projects.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
release_channel = { path = "../release_channel" }
|
release_channel.workspace = true
|
||||||
rope = { path = "../rope" }
|
rope.workspace = true
|
||||||
rpc = { path = "../rpc" }
|
rpc.workspace = true
|
||||||
rsa = "0.4"
|
rsa = "0.4"
|
||||||
rust-embed.workspace = true
|
rust-embed.workspace = true
|
||||||
schemars.workspace = true
|
schemars.workspace = true
|
||||||
search = { path = "../search" }
|
search.workspace = true
|
||||||
semantic_index = { path = "../semantic_index" }
|
semantic_index.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_derive.workspace = true
|
serde_derive.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
settings = { path = "../settings" }
|
settings.workspace = true
|
||||||
shellexpand = "2.1.0"
|
shellexpand = "2.1.0"
|
||||||
simplelog = "0.9"
|
simplelog = "0.9"
|
||||||
smallvec.workspace = true
|
smallvec.workspace = true
|
||||||
smol.workspace = true
|
smol.workspace = true
|
||||||
sum_tree = { path = "../sum_tree" }
|
sum_tree.workspace = true
|
||||||
tempfile.workspace = true
|
tempfile.workspace = true
|
||||||
terminal_view = { path = "../terminal_view" }
|
terminal_view.workspace = true
|
||||||
text = { path = "../text" }
|
text.workspace = true
|
||||||
theme = { path = "../theme" }
|
theme.workspace = true
|
||||||
theme_selector = { path = "../theme_selector" }
|
theme_selector.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tiny_http = "0.8"
|
tiny_http = "0.8"
|
||||||
toml.workspace = true
|
toml.workspace = true
|
||||||
@ -151,22 +151,22 @@ tree-sitter-zig.workspace = true
|
|||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
urlencoding = "2.1.2"
|
urlencoding = "2.1.2"
|
||||||
util = { path = "../util" }
|
util.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
vim = { path = "../vim" }
|
vim.workspace = true
|
||||||
welcome = { path = "../welcome" }
|
welcome.workspace = true
|
||||||
workspace = { path = "../workspace" }
|
workspace.workspace = true
|
||||||
zed_actions = { path = "../zed_actions" }
|
zed_actions.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
call = { path = "../call", features = ["test-support"] }
|
call = { workspace = true, features = ["test-support"] }
|
||||||
editor = { path = "../editor", features = ["test-support"] }
|
editor = { workspace = true, features = ["test-support"] }
|
||||||
gpui = { path = "../gpui", features = ["test-support"] }
|
gpui = { workspace = true, features = ["test-support"] }
|
||||||
language = { path = "../language", features = ["test-support"] }
|
language = { workspace = true, features = ["test-support"] }
|
||||||
project = { path = "../project", features = ["test-support"] }
|
project = { workspace = true, features = ["test-support"] }
|
||||||
text = { path = "../text", features = ["test-support"] }
|
text = { workspace = true, features = ["test-support"] }
|
||||||
unindent.workspace = true
|
unindent.workspace = true
|
||||||
workspace = { path = "../workspace", features = ["test-support"] }
|
workspace = { workspace = true, features = ["test-support"] }
|
||||||
|
|
||||||
[package.metadata.bundle-dev]
|
[package.metadata.bundle-dev]
|
||||||
icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
|
icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
|
||||||
|
@ -6,5 +6,5 @@ publish = false
|
|||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gpui = { path = "../gpui" }
|
gpui.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
|
Loading…
Reference in New Issue
Block a user