1[package]
2description = "The fast, collaborative code editor."
3edition = "2021"
4name = "zed2"
5version = "0.109.0"
6publish = false
7
8[lib]
9name = "zed2"
10path = "src/zed2.rs"
11doctest = false
12
13[[bin]]
14name = "Zed"
15path = "src/main.rs"
16
17[dependencies]
18ai = { package = "ai2", path = "../ai2"}
19# audio = { path = "../audio" }
20# activity_indicator = { path = "../activity_indicator" }
21# auto_update = { path = "../auto_update" }
22# breadcrumbs = { path = "../breadcrumbs" }
23call = { package = "call2", path = "../call2" }
24# channel = { path = "../channel" }
25cli = { path = "../cli" }
26# collab_ui = { path = "../collab_ui" }
27collections = { path = "../collections" }
28# command_palette = { path = "../command_palette" }
29# component_test = { path = "../component_test" }
30# context_menu = { path = "../context_menu" }
31client = { package = "client2", path = "../client2" }
32# clock = { path = "../clock" }
33copilot = { package = "copilot2", path = "../copilot2" }
34# copilot_button = { path = "../copilot_button" }
35# diagnostics = { path = "../diagnostics" }
36db = { package = "db2", path = "../db2" }
37editor = { package="editor2", path = "../editor2" }
38# feedback = { path = "../feedback" }
39# file_finder = { path = "../file_finder" }
40# search = { path = "../search" }
41fs = { package = "fs2", path = "../fs2" }
42fsevent = { path = "../fsevent" }
43fuzzy = { path = "../fuzzy" }
44go_to_line = { package = "go_to_line2", path = "../go_to_line2" }
45gpui = { package = "gpui2", path = "../gpui2" }
46install_cli = { path = "../install_cli" }
47journal = { package = "journal2", path = "../journal2" }
48language = { package = "language2", path = "../language2" }
49# language_selector = { path = "../language_selector" }
50lsp = { package = "lsp2", path = "../lsp2" }
51language_tools = { path = "../language_tools" }
52node_runtime = { path = "../node_runtime" }
53# assistant = { path = "../assistant" }
54# outline = { path = "../outline" }
55# plugin_runtime = { path = "../plugin_runtime",optional = true }
56project = { package = "project2", path = "../project2" }
57# project_panel = { path = "../project_panel" }
58# project_symbols = { path = "../project_symbols" }
59# quick_action_bar = { path = "../quick_action_bar" }
60# recent_projects = { path = "../recent_projects" }
61rpc = { package = "rpc2", path = "../rpc2" }
62settings = { package = "settings2", path = "../settings2" }
63feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
64sum_tree = { path = "../sum_tree" }
65shellexpand = "2.1.0"
66text = { package = "text2", path = "../text2" }
67# terminal_view = { path = "../terminal_view" }
68theme = { package = "theme2", path = "../theme2" }
69# theme_selector = { path = "../theme_selector" }
70util = { path = "../util" }
71# semantic_index = { path = "../semantic_index" }
72# vim = { path = "../vim" }
73workspace = { package = "workspace2", path = "../workspace2" }
74# welcome = { path = "../welcome" }
75# zed-actions = {path = "../zed-actions"}
76anyhow.workspace = true
77async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
78async-tar = "0.4.2"
79async-recursion = "0.3"
80async-trait.workspace = true
81backtrace = "0.3"
82chrono = "0.4"
83ctor = "0.1.20"
84env_logger.workspace = true
85futures.workspace = true
86ignore = "0.4"
87image = "0.23"
88indexmap = "1.6.2"
89isahc.workspace = true
90lazy_static.workspace = true
91libc = "0.2"
92log.workspace = true
93num_cpus = "1.13.0"
94parking_lot.workspace = true
95postage.workspace = true
96rand.workspace = true
97regex.workspace = true
98rsa = "0.4"
99rust-embed.workspace = true
100serde.workspace = true
101serde_derive.workspace = true
102serde_json.workspace = true
103schemars.workspace = true
104simplelog = "0.9"
105smallvec.workspace = true
106smol.workspace = true
107tempdir.workspace = true
108thiserror.workspace = true
109tiny_http = "0.8"
110toml.workspace = true
111tree-sitter.workspace = true
112tree-sitter-bash.workspace = true
113tree-sitter-c.workspace = true
114tree-sitter-cpp.workspace = true
115tree-sitter-css.workspace = true
116tree-sitter-elixir.workspace = true
117tree-sitter-elm.workspace = true
118tree-sitter-embedded-template.workspace = true
119tree-sitter-glsl.workspace = true
120tree-sitter-go.workspace = true
121tree-sitter-heex.workspace = true
122tree-sitter-json.workspace = true
123tree-sitter-rust.workspace = true
124tree-sitter-markdown.workspace = true
125tree-sitter-python.workspace = true
126tree-sitter-toml.workspace = true
127tree-sitter-typescript.workspace = true
128tree-sitter-ruby.workspace = true
129tree-sitter-html.workspace = true
130tree-sitter-php.workspace = true
131tree-sitter-scheme.workspace = true
132tree-sitter-svelte.workspace = true
133tree-sitter-racket.workspace = true
134tree-sitter-yaml.workspace = true
135tree-sitter-lua.workspace = true
136tree-sitter-nix.workspace = true
137tree-sitter-nu.workspace = true
138tree-sitter-vue.workspace = true
139
140url = "2.2"
141urlencoding = "2.1.2"
142uuid.workspace = true
143
144[dev-dependencies]
145call = { package = "call2", path = "../call2", features = ["test-support"] }
146# client = { path = "../client", features = ["test-support"] }
147# editor = { path = "../editor", features = ["test-support"] }
148# gpui = { path = "../gpui", features = ["test-support"] }
149gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
150language = { package = "language2", path = "../language2", features = ["test-support"] }
151# lsp = { path = "../lsp", features = ["test-support"] }
152project = { package = "project2", path = "../project2", features = ["test-support"] }
153# rpc = { path = "../rpc", features = ["test-support"] }
154# settings = { path = "../settings", features = ["test-support"] }
155text = { package = "text2", path = "../text2", features = ["test-support"] }
156# util = { path = "../util", features = ["test-support"] }
157# workspace = { path = "../workspace", features = ["test-support"] }
158unindent.workspace = true
159
160[package.metadata.bundle-dev]
161icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
162identifier = "dev.zed.Zed-Dev"
163name = "Zed Dev"
164osx_minimum_system_version = "10.15.7"
165osx_info_plist_exts = ["resources/info/*"]
166osx_url_schemes = ["zed-dev"]
167
168[package.metadata.bundle-preview]
169icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
170identifier = "dev.zed.Zed-Preview"
171name = "Zed Preview"
172osx_minimum_system_version = "10.15.7"
173osx_info_plist_exts = ["resources/info/*"]
174osx_url_schemes = ["zed-preview"]
175
176[package.metadata.bundle-stable]
177icon = ["resources/app-icon@2x.png", "resources/app-icon.png"]
178identifier = "dev.zed.Zed"
179name = "Zed"
180osx_minimum_system_version = "10.15.7"
181osx_info_plist_exts = ["resources/info/*"]
182osx_url_schemes = ["zed"]