2021-02-20 20:02:34 +03:00
|
|
|
[workspace]
|
2022-10-25 20:31:58 +03:00
|
|
|
members = [
|
|
|
|
"crates/activity_indicator",
|
|
|
|
"crates/assets",
|
|
|
|
"crates/auto_update",
|
|
|
|
"crates/breadcrumbs",
|
|
|
|
"crates/call",
|
|
|
|
"crates/cli",
|
|
|
|
"crates/client",
|
|
|
|
"crates/clock",
|
|
|
|
"crates/collab",
|
|
|
|
"crates/collab_ui",
|
|
|
|
"crates/collections",
|
|
|
|
"crates/command_palette",
|
|
|
|
"crates/context_menu",
|
|
|
|
"crates/db",
|
|
|
|
"crates/diagnostics",
|
|
|
|
"crates/drag_and_drop",
|
|
|
|
"crates/editor",
|
|
|
|
"crates/file_finder",
|
|
|
|
"crates/fs",
|
|
|
|
"crates/fsevent",
|
|
|
|
"crates/fuzzy",
|
|
|
|
"crates/git",
|
|
|
|
"crates/go_to_line",
|
|
|
|
"crates/gpui",
|
|
|
|
"crates/gpui_macros",
|
|
|
|
"crates/journal",
|
|
|
|
"crates/language",
|
|
|
|
"crates/live_kit_client",
|
|
|
|
"crates/live_kit_server",
|
|
|
|
"crates/lsp",
|
|
|
|
"crates/media",
|
|
|
|
"crates/menu",
|
|
|
|
"crates/outline",
|
|
|
|
"crates/picker",
|
|
|
|
"crates/plugin",
|
|
|
|
"crates/plugin_macros",
|
|
|
|
"crates/plugin_runtime",
|
|
|
|
"crates/project",
|
|
|
|
"crates/project_panel",
|
|
|
|
"crates/project_symbols",
|
|
|
|
"crates/rope",
|
|
|
|
"crates/rpc",
|
|
|
|
"crates/search",
|
|
|
|
"crates/settings",
|
|
|
|
"crates/snippet",
|
|
|
|
"crates/sum_tree",
|
|
|
|
"crates/terminal",
|
|
|
|
"crates/text",
|
|
|
|
"crates/theme",
|
|
|
|
"crates/theme_selector",
|
|
|
|
"crates/theme_testbench",
|
|
|
|
"crates/util",
|
|
|
|
"crates/vim",
|
|
|
|
"crates/workspace",
|
|
|
|
"crates/zed",
|
|
|
|
]
|
2021-10-04 22:22:21 +03:00
|
|
|
default-members = ["crates/zed"]
|
2022-01-26 23:51:29 +03:00
|
|
|
resolver = "2"
|
2021-04-02 20:02:09 +03:00
|
|
|
|
2022-10-11 03:10:42 +03:00
|
|
|
[workspace.dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
|
2022-10-12 01:25:54 +03:00
|
|
|
rand = { version = "0.8" }
|
2022-10-11 03:10:42 +03:00
|
|
|
|
2021-04-02 20:02:09 +03:00
|
|
|
[patch.crates-io]
|
2022-11-08 03:58:12 +03:00
|
|
|
tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "da6e24de1751aef6a944adfcefb192b751c56f76" }
|
2021-05-28 23:09:57 +03:00
|
|
|
async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
|
2022-07-09 00:08:35 +03:00
|
|
|
|
2021-05-05 05:04:11 +03:00
|
|
|
# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
|
2022-04-27 18:58:55 +03:00
|
|
|
cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
2021-04-20 01:00:10 +03:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
split-debuginfo = "unpacked"
|
2021-05-07 15:42:56 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2022-10-11 03:10:42 +03:00
|
|
|
|