Cargo.toml

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