Cargo.toml

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