1[workspace]
2members = [
3 "crates/activity_indicator",
4 "crates/ai",
5 "crates/assets",
6 "crates/assistant",
7 "crates/audio",
8 "crates/auto_update",
9 "crates/breadcrumbs",
10 "crates/call",
11 "crates/channel",
12 "crates/cli",
13 "crates/client",
14 "crates/clock",
15 "crates/collab",
16 "crates/collab_ui",
17 "crates/collections",
18 "crates/command_palette",
19 "crates/copilot",
20 "crates/copilot_ui",
21 "crates/db",
22 "crates/diagnostics",
23 "crates/editor",
24 "crates/extension",
25 "crates/extensions_ui",
26 "crates/feature_flags",
27 "crates/feedback",
28 "crates/file_finder",
29 "crates/fs",
30 "crates/fsevent",
31 "crates/fuzzy",
32 "crates/git",
33 "crates/go_to_line",
34 "crates/gpui",
35 "crates/gpui_macros",
36 "crates/install_cli",
37 "crates/journal",
38 "crates/language",
39 "crates/language_selector",
40 "crates/language_tools",
41 "crates/live_kit_client",
42 "crates/live_kit_server",
43 "crates/lsp",
44 "crates/markdown_preview",
45 "crates/media",
46 "crates/menu",
47 "crates/multi_buffer",
48 "crates/node_runtime",
49 "crates/notifications",
50 "crates/outline",
51 "crates/picker",
52 "crates/plugin",
53 "crates/plugin_macros",
54 "crates/prettier",
55 "crates/project",
56 "crates/project_panel",
57 "crates/project_symbols",
58 "crates/quick_action_bar",
59 "crates/recent_projects",
60 "crates/refineable",
61 "crates/refineable/derive_refineable",
62 "crates/release_channel",
63 "crates/rich_text",
64 "crates/rope",
65 "crates/rpc",
66 "crates/task",
67 "crates/tasks_ui",
68 "crates/search",
69 "crates/semantic_index",
70 "crates/settings",
71 "crates/snippet",
72 "crates/sqlez",
73 "crates/sqlez_macros",
74 "crates/story",
75 "crates/storybook",
76 "crates/sum_tree",
77 "crates/terminal",
78 "crates/terminal_view",
79 "crates/text",
80 "crates/theme",
81 "crates/theme_importer",
82 "crates/theme_selector",
83 "crates/telemetry_events",
84 "crates/ui",
85 "crates/util",
86 "crates/vcs_menu",
87 "crates/vim",
88 "crates/welcome",
89 "crates/workspace",
90 "crates/zed",
91 "crates/zed_actions",
92]
93default-members = ["crates/zed"]
94resolver = "2"
95
96[workspace.dependencies]
97activity_indicator = { path = "crates/activity_indicator" }
98ai = { path = "crates/ai" }
99assets = { path = "crates/assets" }
100assistant = { path = "crates/assistant" }
101audio = { path = "crates/audio" }
102auto_update = { path = "crates/auto_update" }
103breadcrumbs = { path = "crates/breadcrumbs" }
104call = { path = "crates/call" }
105channel = { path = "crates/channel" }
106cli = { path = "crates/cli" }
107client = { path = "crates/client" }
108clock = { path = "crates/clock" }
109collab = { path = "crates/collab" }
110collab_ui = { path = "crates/collab_ui" }
111collections = { path = "crates/collections" }
112color = { path = "crates/color" }
113command_palette = { path = "crates/command_palette" }
114copilot = { path = "crates/copilot" }
115copilot_ui = { path = "crates/copilot_ui" }
116db = { path = "crates/db" }
117diagnostics = { path = "crates/diagnostics" }
118editor = { path = "crates/editor" }
119extension = { path = "crates/extension" }
120extensions_ui = { path = "crates/extensions_ui" }
121feature_flags = { path = "crates/feature_flags" }
122feedback = { path = "crates/feedback" }
123file_finder = { path = "crates/file_finder" }
124fs = { path = "crates/fs" }
125fsevent = { path = "crates/fsevent" }
126fuzzy = { path = "crates/fuzzy" }
127git = { path = "crates/git" }
128go_to_line = { path = "crates/go_to_line" }
129gpui = { path = "crates/gpui" }
130gpui_macros = { path = "crates/gpui_macros" }
131install_cli = { path = "crates/install_cli" }
132journal = { path = "crates/journal" }
133language = { path = "crates/language" }
134language_selector = { path = "crates/language_selector" }
135language_tools = { path = "crates/language_tools" }
136live_kit_client = { path = "crates/live_kit_client" }
137live_kit_server = { path = "crates/live_kit_server" }
138lsp = { path = "crates/lsp" }
139markdown_preview = { path = "crates/markdown_preview" }
140media = { path = "crates/media" }
141menu = { path = "crates/menu" }
142multi_buffer = { path = "crates/multi_buffer" }
143node_runtime = { path = "crates/node_runtime" }
144notifications = { path = "crates/notifications" }
145outline = { path = "crates/outline" }
146picker = { path = "crates/picker" }
147plugin = { path = "crates/plugin" }
148plugin_macros = { path = "crates/plugin_macros" }
149prettier = { path = "crates/prettier" }
150project = { path = "crates/project" }
151project_panel = { path = "crates/project_panel" }
152project_symbols = { path = "crates/project_symbols" }
153quick_action_bar = { path = "crates/quick_action_bar" }
154recent_projects = { path = "crates/recent_projects" }
155release_channel = { path = "crates/release_channel" }
156rich_text = { path = "crates/rich_text" }
157rope = { path = "crates/rope" }
158rpc = { path = "crates/rpc" }
159task = { path = "crates/task" }
160tasks_ui = { path = "crates/tasks_ui" }
161search = { path = "crates/search" }
162semantic_index = { path = "crates/semantic_index" }
163settings = { path = "crates/settings" }
164snippet = { path = "crates/snippet" }
165sqlez = { path = "crates/sqlez" }
166sqlez_macros = { path = "crates/sqlez_macros" }
167story = { path = "crates/story" }
168storybook = { path = "crates/storybook" }
169sum_tree = { path = "crates/sum_tree" }
170terminal = { path = "crates/terminal" }
171terminal_view = { path = "crates/terminal_view" }
172text = { path = "crates/text" }
173theme = { path = "crates/theme" }
174theme_importer = { path = "crates/theme_importer" }
175theme_selector = { path = "crates/theme_selector" }
176telemetry_events = { path ="crates/telemetry_events" }
177ui = { path = "crates/ui" }
178util = { path = "crates/util" }
179vcs_menu = { path = "crates/vcs_menu" }
180vim = { path = "crates/vim" }
181welcome = { path = "crates/welcome" }
182workspace = { path = "crates/workspace" }
183zed = { path = "crates/zed" }
184zed_actions = { path = "crates/zed_actions" }
185
186anyhow = "1.0.57"
187async-compression = { version = "0.4", features = ["gzip", "futures-io"] }
188async-tar = "0.4.2"
189async-trait = "0.1"
190blade-graphics = { git = "https://github.com/kvark/blade", rev = "e9d93a4d41f3946a03ffb76136290d6ccf7f2b80" }
191blade-macros = { git = "https://github.com/kvark/blade", rev = "e9d93a4d41f3946a03ffb76136290d6ccf7f2b80" }
192blade-rwh = { package = "raw-window-handle", version = "0.5" }
193chrono = { version = "0.4", features = ["serde"] }
194clickhouse = { version = "0.11.6" }
195ctor = "0.2.6"
196derive_more = "0.99.17"
197env_logger = "0.9"
198futures = "0.3"
199git2 = { version = "0.15", default-features = false }
200globset = "0.4"
201hex = "0.4.3"
202indoc = "1"
203# We explicitly disable a http2 support in isahc.
204isahc = { version = "1.7.2", default-features = false, features = ["static-curl", "text-decoding"] }
205lazy_static = "1.4.0"
206linkify = "0.10.0"
207log = { version = "0.4.16", features = ["kv_unstable_serde"] }
208ordered-float = "2.1.1"
209parking_lot = "0.11.1"
210postage = { version = "0.5", features = ["futures-traits"] }
211pretty_assertions = "1.3.0"
212prost = "0.8"
213pulldown-cmark = { version = "0.9.2", default-features = false }
214rand = "0.8.5"
215refineable = { path = "./crates/refineable" }
216regex = "1.5"
217rusqlite = { version = "0.29.0", features = ["blob", "array", "modern_sqlite"] }
218rust-embed = { version = "8.0", features = ["include-exclude"] }
219schemars = "0.8"
220semver = "1.0"
221serde = { version = "1.0", features = ["derive", "rc"] }
222serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
223serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
224serde_json_lenient = { version = "0.1", features = ["preserve_order", "raw_value"] }
225serde_repr = "0.1"
226sha2 = "0.10"
227smallvec = { version = "1.6", features = ["union"] }
228smol = "1.2"
229strum = { version = "0.25.0", features = ["derive"] }
230sysinfo = "0.29.10"
231tempfile = "3.9.0"
232thiserror = "1.0.29"
233tiktoken-rs = "0.5.7"
234time = { version = "0.3", features = ["serde", "serde-well-known", "formatting"] }
235toml = "0.8"
236tree-sitter = { version = "0.20", features = ["wasm"] }
237tree-sitter-astro = { git = "https://github.com/virchau13/tree-sitter-astro.git", rev = "e924787e12e8a03194f36a113290ac11d6dc10f3" }
238tree-sitter-bash = { git = "https://github.com/tree-sitter/tree-sitter-bash", rev = "7331995b19b8f8aba2d5e26deb51d2195c18bc94" }
239tree-sitter-c = "0.20.1"
240tree-sitter-clojure = { git = "https://github.com/prcastro/tree-sitter-clojure", branch = "update-ts" }
241tree-sitter-c-sharp = { git = "https://github.com/tree-sitter/tree-sitter-c-sharp", rev = "dd5e59721a5f8dae34604060833902b882023aaf" }
242tree-sitter-cpp = { git = "https://github.com/tree-sitter/tree-sitter-cpp", rev = "f44509141e7e483323d2ec178f2d2e6c0fc041c1" }
243tree-sitter-css = { git = "https://github.com/tree-sitter/tree-sitter-css", rev = "769203d0f9abe1a9a691ac2b9fe4bb4397a73c51" }
244tree-sitter-dockerfile = { git = "https://github.com/camdencheek/tree-sitter-dockerfile", rev = "33e22c33bcdbfc33d42806ee84cfd0b1248cc392" }
245tree-sitter-dart = { git = "https://github.com/agent3bood/tree-sitter-dart", rev = "48934e3bf757a9b78f17bdfaa3e2b4284656fdc7" }
246tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "a2861e88a730287a60c11ea9299c033c7d076e30" }
247tree-sitter-elm = { git = "https://github.com/elm-tooling/tree-sitter-elm", rev = "692c50c0b961364c40299e73c1306aecb5d20f40" }
248tree-sitter-embedded-template = "0.20.0"
249tree-sitter-erlang = "0.4.0"
250tree-sitter-gitcommit = { git = "https://github.com/gbprod/tree-sitter-gitcommit" }
251tree-sitter-gleam = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "58b7cac8fc14c92b0677c542610d8738c373fa81" }
252tree-sitter-glsl = { git = "https://github.com/theHamsta/tree-sitter-glsl", rev = "2a56fb7bc8bb03a1892b4741279dd0a8758b7fb3" }
253tree-sitter-go = { git = "https://github.com/tree-sitter/tree-sitter-go", rev = "aeb2f33b366fd78d5789ff104956ce23508b85db" }
254tree-sitter-gomod = { git = "https://github.com/camdencheek/tree-sitter-go-mod" }
255tree-sitter-gowork = { git = "https://github.com/d1y/tree-sitter-go-work" }
256tree-sitter-haskell = { git = "https://github.com/tree-sitter/tree-sitter-haskell", rev = "8a99848fc734f9c4ea523b3f2a07df133cbbcec2" }
257tree-sitter-hcl = { git = "https://github.com/MichaHoffmann/tree-sitter-hcl", rev = "v1.1.0" }
258tree-sitter-heex = { git = "https://github.com/phoenixframework/tree-sitter-heex", rev = "2e1348c3cf2c9323e87c2744796cf3f3868aa82a" }
259tree-sitter-html = "0.19.0"
260tree-sitter-json = { git = "https://github.com/tree-sitter/tree-sitter-json", rev = "40a81c01a40ac48744e0c8ccabbaba1920441199" }
261tree-sitter-lua = "0.0.14"
262tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
263tree-sitter-nix = { git = "https://github.com/nix-community/tree-sitter-nix", rev = "66e3e9ce9180ae08fc57372061006ef83f0abde7" }
264tree-sitter-nu = { git = "https://github.com/nushell/tree-sitter-nu", rev = "7dd29f9616822e5fc259f5b4ae6c4ded9a71a132" }
265tree-sitter-ocaml = { git = "https://github.com/tree-sitter/tree-sitter-ocaml", rev = "4abfdc1c7af2c6c77a370aee974627be1c285b3b" }
266tree-sitter-php = "0.21.1"
267tree-sitter-prisma-io = { git = "https://github.com/victorhqc/tree-sitter-prisma" }
268tree-sitter-proto = { git = "https://github.com/rewinfrey/tree-sitter-proto", rev = "36d54f288aee112f13a67b550ad32634d0c2cb52" }
269tree-sitter-purescript = { git = "https://github.com/ivanmoreau/tree-sitter-purescript", rev = "a37140f0c7034977b90faa73c94fcb8a5e45ed08" }
270tree-sitter-python = "0.20.2"
271tree-sitter-racket = { git = "https://github.com/zed-industries/tree-sitter-racket", rev = "eb010cf2c674c6fd9a6316a84e28ef90190fe51a" }
272tree-sitter-ruby = "0.20.0"
273tree-sitter-rust = "0.20.3"
274tree-sitter-scheme = { git = "https://github.com/6cdh/tree-sitter-scheme", rev = "af0fd1fa452cb2562dc7b5c8a8c55551c39273b9" }
275tree-sitter-svelte = { git = "https://github.com/Himujjal/tree-sitter-svelte", rev = "bd60db7d3d06f89b6ec3b287c9a6e9190b5564bd" }
276tree-sitter-toml = { git = "https://github.com/tree-sitter/tree-sitter-toml", rev = "342d9be207c2dba869b9967124c679b5e6fd0ebe" }
277tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "5d20856f34315b068c41edaee2ac8a100081d259" }
278tree-sitter-uiua = { git = "https://github.com/shnarazk/tree-sitter-uiua", rev = "21dc2db39494585bf29a3f86d5add6e9d11a22ba" }
279tree-sitter-vue = { git = "https://github.com/zed-industries/tree-sitter-vue", rev = "6608d9d60c386f19d80af7d8132322fa11199c42" }
280tree-sitter-yaml = { git = "https://github.com/zed-industries/tree-sitter-yaml", rev = "f545a41f57502e1b5ddf2a6668896c1b0620f930" }
281tree-sitter-zig = { git = "https://github.com/maxxnino/tree-sitter-zig", rev = "0d08703e4c3f426ec61695d7617415fff97029bd" }
282unindent = "0.1.7"
283url = "2.2"
284uuid = { version = "1.1.2", features = ["v4"] }
285wasmtime = "16"
286which = "6.0.0"
287sys-locale = "0.3.1"
288
289[patch.crates-io]
290tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "1d8975319c2d5de1bf710e7e21db25b0eee4bc66" }
291wasmtime = { git = "https://github.com/bytecodealliance/wasmtime", rev = "v16.0.0" }
292# Workaround for a broken nightly build of gpui: See #7644 and revisit once 0.5.3 is released.
293pathfinder_simd = { git = "https://github.com/servo/pathfinder.git", rev = "e4fcda0d5259d0acf902aee6de7d2501f2bd6629" }
294
295[profile.dev]
296split-debuginfo = "unpacked"
297debug = "limited"
298
299# todo!(linux) - Remove this
300[profile.dev.package.blade-graphics]
301split-debuginfo = "off"
302debug = "full"
303
304[profile.dev.package.taffy]
305opt-level = 3
306
307[profile.release]
308debug = "limited"
309lto = "thin"
310codegen-units = 1