1[workspace]
2members = [
3 "crates/activity_indicator",
4 "crates/assets",
5 "crates/auto_update",
6 "crates/breadcrumbs",
7 "crates/call",
8 "crates/cli",
9 "crates/client",
10 "crates/clock",
11 "crates/collab",
12 "crates/collab_ui",
13 "crates/collections",
14 "crates/command_palette",
15 "crates/context_menu",
16 "crates/db",
17 "crates/diagnostics",
18 "crates/drag_and_drop",
19 "crates/editor",
20 "crates/file_finder",
21 "crates/fs",
22 "crates/fsevent",
23 "crates/fuzzy",
24 "crates/git",
25 "crates/go_to_line",
26 "crates/gpui",
27 "crates/gpui_macros",
28 "crates/journal",
29 "crates/language",
30 "crates/live_kit_client",
31 "crates/live_kit_server",
32 "crates/lsp",
33 "crates/media",
34 "crates/menu",
35 "crates/outline",
36 "crates/picker",
37 "crates/plugin",
38 "crates/plugin_macros",
39 "crates/plugin_runtime",
40 "crates/project",
41 "crates/project_panel",
42 "crates/project_symbols",
43 "crates/rope",
44 "crates/rpc",
45 "crates/search",
46 "crates/settings",
47 "crates/snippet",
48 "crates/sqlez",
49 "crates/sqlez_macros",
50 "crates/sum_tree",
51 "crates/terminal",
52 "crates/text",
53 "crates/theme",
54 "crates/theme_selector",
55 "crates/theme_testbench",
56 "crates/util",
57 "crates/vim",
58 "crates/workspace",
59 "crates/zed",
60]
61default-members = ["crates/zed"]
62resolver = "2"
63
64[workspace.dependencies]
65serde = { version = "1.0", features = ["derive", "rc"] }
66serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
67rand = { version = "0.8" }
68
69[patch.crates-io]
70tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "36b5b6c89e55ad1a502f8b3234bb3e12ec83a5da" }
71async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
72
73# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
74cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
75cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
76core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
77core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
78core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
79
80[profile.dev]
81split-debuginfo = "unpacked"
82
83[profile.release]
84debug = true
85
86