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/copilot",
17 "crates/copilot_button",
18 "crates/db",
19 "crates/diagnostics",
20 "crates/drag_and_drop",
21 "crates/editor",
22 "crates/feedback",
23 "crates/file_finder",
24 "crates/fs",
25 "crates/fsevent",
26 "crates/fuzzy",
27 "crates/git",
28 "crates/go_to_line",
29 "crates/gpui",
30 "crates/gpui_macros",
31 "crates/install_cli",
32 "crates/journal",
33 "crates/language",
34 "crates/language_selector",
35 "crates/live_kit_client",
36 "crates/live_kit_server",
37 "crates/lsp",
38 "crates/lsp_log",
39 "crates/media",
40 "crates/menu",
41 "crates/node_runtime",
42 "crates/outline",
43 "crates/picker",
44 "crates/plugin",
45 "crates/plugin_macros",
46 "crates/plugin_runtime",
47 "crates/project",
48 "crates/project_panel",
49 "crates/project_symbols",
50 "crates/recent_projects",
51 "crates/rope",
52 "crates/rpc",
53 "crates/search",
54 "crates/settings",
55 "crates/snippet",
56 "crates/sqlez",
57 "crates/sqlez_macros",
58 "crates/staff_mode",
59 "crates/sum_tree",
60 "crates/terminal",
61 "crates/text",
62 "crates/theme",
63 "crates/theme_selector",
64 "crates/theme_testbench",
65 "crates/util",
66 "crates/vim",
67 "crates/workspace",
68 "crates/welcome",
69 "crates/zed",
70]
71default-members = ["crates/zed"]
72resolver = "2"
73
74[workspace.dependencies]
75anyhow = { version = "1.0.57" }
76async-trait = { version = "0.1" }
77ctor = { version = "0.1" }
78env_logger = { version = "0.9" }
79futures = { version = "0.3" }
80glob = { version = "0.3" }
81globset = { version = "0.4" }
82lazy_static = { version = "1.4.0" }
83log = { version = "0.4.16", features = ["kv_unstable_serde"] }
84ordered-float = { version = "2.1.1" }
85parking_lot = { version = "0.11.1" }
86postage = { version = "0.5", features = ["futures-traits"] }
87rand = { version = "0.8.5" }
88regex = { version = "1.5" }
89serde = { version = "1.0", features = ["derive", "rc"] }
90serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
91serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
92smallvec = { version = "1.6", features = ["union"] }
93smol = { version = "1.2" }
94tempdir = { version = "0.3.7" }
95thiserror = { version = "1.0.29" }
96time = { version = "0.3", features = ["serde", "serde-well-known"] }
97unindent = { version = "0.1.7" }
98
99[patch.crates-io]
100tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "c51896d32dcc11a38e41f36e3deb1a6a9c4f4b14" }
101async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
102
103# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
104cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
105cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
106core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
107core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
108core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
109
110[profile.dev]
111split-debuginfo = "unpacked"
112
113[profile.release]
114debug = true