Cargo.toml

  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 = "zed2"
 15path = "src/main.rs"
 16
 17[dependencies]
 18ai = { package = "ai2", path = "../ai2"}
 19audio = { package = "audio2", path = "../audio2" }
 20# activity_indicator = { path = "../activity_indicator" }
 21auto_update = { package = "auto_update2", path = "../auto_update2" }
 22# breadcrumbs = { path = "../breadcrumbs" }
 23call = { package = "call2", path = "../call2" }
 24channel = { package = "channel2", path = "../channel2" }
 25cli = { path = "../cli" }
 26collab_ui = { package = "collab_ui2", path = "../collab_ui2" }
 27collections = { path = "../collections" }
 28command_palette = { package="command_palette2", path = "../command_palette2" }
 29# component_test = { path = "../component_test" }
 30client = { package = "client2", path = "../client2" }
 31# clock = { path = "../clock" }
 32copilot = { package = "copilot2", path = "../copilot2" }
 33# copilot_button = { path = "../copilot_button" }
 34diagnostics = { package = "diagnostics2", path = "../diagnostics2" }
 35db = { package = "db2", path = "../db2" }
 36editor = { package="editor2", path = "../editor2" }
 37# feedback = { path = "../feedback" }
 38file_finder = { package="file_finder2", path = "../file_finder2" }
 39search = { package = "search2", path = "../search2" }
 40fs = { package = "fs2", path = "../fs2" }
 41fsevent = { path = "../fsevent" }
 42go_to_line = { package = "go_to_line2", path = "../go_to_line2" }
 43gpui = { package = "gpui2", path = "../gpui2" }
 44install_cli = { package = "install_cli2", path = "../install_cli2" }
 45journal = { package = "journal2", path = "../journal2" }
 46language = { package = "language2", path = "../language2" }
 47# language_selector = { path = "../language_selector" }
 48lsp = { package = "lsp2", path = "../lsp2" }
 49menu = { package = "menu2", path = "../menu2" }
 50# language_tools = { path = "../language_tools" }
 51node_runtime = { path = "../node_runtime" }
 52# assistant = { path = "../assistant" }
 53# outline = { path = "../outline" }
 54# plugin_runtime = { path = "../plugin_runtime",optional = true }
 55project = { package = "project2", path = "../project2" }
 56project_panel = { package = "project_panel2", path = "../project_panel2" }
 57# project_symbols = { path = "../project_symbols" }
 58# quick_action_bar = { path = "../quick_action_bar" }
 59# recent_projects = { path = "../recent_projects" }
 60rope = { package = "rope2", path = "../rope2"}
 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" }
 67terminal_view = { package = "terminal_view2", path = "../terminal_view2" }
 68theme = { package = "theme2", path = "../theme2" }
 69theme_selector = { package = "theme_selector2", path = "../theme_selector2" }
 70util = { path = "../util" }
 71# semantic_index = { path = "../semantic_index" }
 72# vim = { path = "../vim" }
 73workspace = { package = "workspace2", path = "../workspace2" }
 74welcome = { package = "welcome2", path = "../welcome2" }
 75zed_actions = {package = "zed_actions2", path = "../zed_actions2"}
 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.workspace = true
 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
139tree-sitter-uiua.workspace = true
140
141url = "2.2"
142urlencoding = "2.1.2"
143uuid.workspace = true
144
145[dev-dependencies]
146call = { package = "call2", path = "../call2", features = ["test-support"] }
147# client = { path = "../client", features = ["test-support"] }
148# editor = { path = "../editor", features = ["test-support"] }
149# gpui = { path = "../gpui", features = ["test-support"] }
150gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
151language = { package = "language2", path = "../language2", features = ["test-support"] }
152# lsp = { path = "../lsp", features = ["test-support"] }
153project = { package = "project2", path = "../project2", features = ["test-support"] }
154# rpc = { path = "../rpc", features = ["test-support"] }
155# settings = { path = "../settings", features = ["test-support"] }
156text = { package = "text2", path = "../text2", features = ["test-support"] }
157# util = { path = "../util", features = ["test-support"] }
158# workspace = { path = "../workspace", features = ["test-support"] }
159unindent.workspace = true
160
161[package.metadata.bundle-dev]
162icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
163identifier = "dev.zed.Zed-Dev"
164name = "Zed Dev"
165osx_minimum_system_version = "10.15.7"
166osx_info_plist_exts = ["resources/info/*"]
167osx_url_schemes = ["zed-dev"]
168
169[package.metadata.bundle-nightly]
170icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
171identifier = "dev.zed.Zed-Dev"
172name = "Zed Nightly"
173osx_minimum_system_version = "10.15.7"
174osx_info_plist_exts = ["resources/info/*"]
175osx_url_schemes = ["zed-dev"]
176
177[package.metadata.bundle-preview]
178icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
179identifier = "dev.zed.Zed-Preview"
180name = "Zed Preview"
181osx_minimum_system_version = "10.15.7"
182osx_info_plist_exts = ["resources/info/*"]
183osx_url_schemes = ["zed-preview"]
184
185[package.metadata.bundle-stable]
186icon = ["resources/app-icon@2x.png", "resources/app-icon.png"]
187identifier = "dev.zed.Zed"
188name = "Zed"
189osx_minimum_system_version = "10.15.7"
190osx_info_plist_exts = ["resources/info/*"]
191osx_url_schemes = ["zed"]