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/recent_projects",
44 "crates/rope",
45 "crates/rpc",
46 "crates/search",
47 "crates/settings",
48 "crates/snippet",
49 "crates/sqlez",
50 "crates/sqlez_macros",
51 "crates/sum_tree",
52 "crates/terminal",
53 "crates/text",
54 "crates/theme",
55 "crates/theme_selector",
56 "crates/theme_testbench",
57 "crates/util",
58 "crates/vim",
59 "crates/workspace",
60 "crates/zed",
61]
62default-members = ["crates/zed"]
63resolver = "2"
64
65[workspace.dependencies]
66serde = { version = "1.0", features = ["derive", "rc"] }
67serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
68rand = { version = "0.8" }
69
70[patch.crates-io]
71tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "36b5b6c89e55ad1a502f8b3234bb3e12ec83a5da" }
72async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
73
74# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
75cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
76cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
77core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
78core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
79core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
80
81[profile.dev]
82split-debuginfo = "unpacked"
83
84[profile.release]
85debug = true
86
87