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