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