Cargo.toml

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