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",
|
2023-03-23 05:22:08 +03:00
|
|
|
"crates/copilot",
|
2023-03-30 07:31:33 +03:00
|
|
|
"crates/copilot_button",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/db",
|
|
|
|
"crates/diagnostics",
|
|
|
|
"crates/drag_and_drop",
|
|
|
|
"crates/editor",
|
2023-01-09 21:54:37 +03:00
|
|
|
"crates/feedback",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/file_finder",
|
|
|
|
"crates/fs",
|
|
|
|
"crates/fsevent",
|
|
|
|
"crates/fuzzy",
|
|
|
|
"crates/git",
|
|
|
|
"crates/go_to_line",
|
|
|
|
"crates/gpui",
|
|
|
|
"crates/gpui_macros",
|
2023-03-07 04:55:58 +03:00
|
|
|
"crates/install_cli",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/journal",
|
|
|
|
"crates/language",
|
2023-02-24 17:57:32 +03:00
|
|
|
"crates/language_selector",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/live_kit_client",
|
|
|
|
"crates/live_kit_server",
|
|
|
|
"crates/lsp",
|
2023-04-21 03:56:22 +03:00
|
|
|
"crates/lsp_log",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/media",
|
|
|
|
"crates/menu",
|
2023-03-28 20:27:31 +03:00
|
|
|
"crates/node_runtime",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/outline",
|
|
|
|
"crates/picker",
|
|
|
|
"crates/plugin",
|
|
|
|
"crates/plugin_macros",
|
|
|
|
"crates/plugin_runtime",
|
|
|
|
"crates/project",
|
|
|
|
"crates/project_panel",
|
|
|
|
"crates/project_symbols",
|
2022-12-15 02:59:50 +03:00
|
|
|
"crates/recent_projects",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/rope",
|
|
|
|
"crates/rpc",
|
|
|
|
"crates/search",
|
|
|
|
"crates/settings",
|
|
|
|
"crates/snippet",
|
2022-11-29 04:42:18 +03:00
|
|
|
"crates/sqlez",
|
|
|
|
"crates/sqlez_macros",
|
2023-04-04 06:16:45 +03:00
|
|
|
"crates/staff_mode",
|
2022-10-25 20:31:58 +03:00
|
|
|
"crates/sum_tree",
|
|
|
|
"crates/terminal",
|
|
|
|
"crates/text",
|
|
|
|
"crates/theme",
|
|
|
|
"crates/theme_selector",
|
|
|
|
"crates/theme_testbench",
|
|
|
|
"crates/util",
|
|
|
|
"crates/vim",
|
|
|
|
"crates/workspace",
|
2023-02-22 05:16:47 +03:00
|
|
|
"crates/welcome",
|
2022-10-25 20:31:58 +03:00
|
|
|
"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]
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow = { version = "1.0.57" }
|
|
|
|
async-trait = { version = "0.1" }
|
|
|
|
ctor = { version = "0.1" }
|
|
|
|
env_logger = { version = "0.9" }
|
|
|
|
futures = { version = "0.3" }
|
2023-04-28 04:06:52 +03:00
|
|
|
glob = { version = "0.3.1" }
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static = { version = "1.4.0" }
|
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
|
|
ordered-float = { version = "2.1.1" }
|
|
|
|
parking_lot = { version = "0.11.1" }
|
|
|
|
postage = { version = "0.5", features = ["futures-traits"] }
|
|
|
|
rand = { version = "0.8.5" }
|
|
|
|
regex = { version = "1.5" }
|
2023-05-10 22:17:52 +03:00
|
|
|
schemars = { version = "0.8" }
|
2022-10-11 03:10:42 +03:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2023-03-17 17:39:24 +03:00
|
|
|
serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
|
2022-10-11 03:10:42 +03:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
|
2023-04-20 10:11:45 +03:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
smol = { version = "1.2" }
|
|
|
|
tempdir = { version = "0.3.7" }
|
|
|
|
thiserror = { version = "1.0.29" }
|
|
|
|
time = { version = "0.3", features = ["serde", "serde-well-known"] }
|
2023-05-17 03:45:04 +03:00
|
|
|
toml = { version = "0.5" }
|
2023-04-25 03:41:55 +03:00
|
|
|
unindent = { version = "0.1.7" }
|
2022-10-11 03:10:42 +03:00
|
|
|
|
2021-04-02 20:02:09 +03:00
|
|
|
[patch.crates-io]
|
2023-02-16 23:35:35 +03:00
|
|
|
tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "c51896d32dcc11a38e41f36e3deb1a6a9c4f4b14" }
|
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
|