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