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