Cargo.toml

  1[package]
  2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
  3description = "The fast, collaborative code editor."
  4edition = "2021"
  5name = "zed"
  6version = "0.117.0"
  7publish = false
  8
  9[lib]
 10name = "zed"
 11path = "src/zed.rs"
 12doctest = false
 13
 14[[bin]]
 15name = "Zed"
 16path = "src/main.rs"
 17
 18[[example]]
 19name = "semantic_index_eval"
 20
 21[dependencies]
 22audio = { path = "../audio" }
 23activity_indicator = { path = "../activity_indicator" }
 24auto_update = { path = "../auto_update" }
 25breadcrumbs = { path = "../breadcrumbs" }
 26call = { path = "../call" }
 27channel = { path = "../channel" }
 28cli = { path = "../cli" }
 29collab_ui = { path = "../collab_ui" }
 30collections = { path = "../collections" }
 31command_palette = { path = "../command_palette" }
 32component_test = { path = "../component_test" }
 33context_menu = { path = "../context_menu" }
 34client = { path = "../client" }
 35clock = { path = "../clock" }
 36copilot = { path = "../copilot" }
 37copilot_button = { path = "../copilot_button" }
 38diagnostics = { path = "../diagnostics" }
 39db = { path = "../db" }
 40editor = { path = "../editor" }
 41feedback = { path = "../feedback" }
 42file_finder = { path = "../file_finder" }
 43search = { path = "../search" }
 44fs = { path = "../fs" }
 45fsevent = { path = "../fsevent" }
 46fuzzy = { path = "../fuzzy" }
 47go_to_line = { path = "../go_to_line" }
 48gpui = { path = "../gpui" }
 49install_cli = { path = "../install_cli" }
 50journal = { path = "../journal" }
 51language = { path = "../language" }
 52language_selector = { path = "../language_selector" }
 53lsp = { path = "../lsp" }
 54language_tools = { path = "../language_tools" }
 55node_runtime = { path = "../node_runtime" }
 56notifications = { path = "../notifications" }
 57assistant = { path = "../assistant" }
 58outline = { path = "../outline" }
 59plugin_runtime = { path = "../plugin_runtime",optional = true }
 60project = { path = "../project" }
 61project_panel = { path = "../project_panel" }
 62project_symbols = { path = "../project_symbols" }
 63quick_action_bar = { path = "../quick_action_bar" }
 64recent_projects = { path = "../recent_projects" }
 65rpc = { path = "../rpc" }
 66settings = { path = "../settings" }
 67feature_flags = { path = "../feature_flags" }
 68sum_tree = { path = "../sum_tree" }
 69shellexpand = "2.1.0"
 70text = { path = "../text" }
 71terminal_view = { path = "../terminal_view" }
 72theme = { path = "../theme" }
 73theme_selector = { path = "../theme_selector" }
 74util = { path = "../util" }
 75semantic_index = { path = "../semantic_index" }
 76vim = { path = "../vim" }
 77workspace = { path = "../workspace" }
 78welcome = { path = "../welcome" }
 79zed-actions = {path = "../zed-actions"}
 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
111tempdir.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]
150ai = { path = "../ai" }
151call = { path = "../call", features = ["test-support"] }
152client = { path = "../client", features = ["test-support"] }
153editor = { path = "../editor", features = ["test-support"] }
154gpui = { path = "../gpui", features = ["test-support"] }
155language = { path = "../language", features = ["test-support"] }
156lsp = { path = "../lsp", features = ["test-support"] }
157project = { path = "../project", features = ["test-support"] }
158rpc = { path = "../rpc", features = ["test-support"] }
159settings = { path = "../settings", features = ["test-support"] }
160text = { path = "../text", features = ["test-support"] }
161util = { path = "../util", features = ["test-support"] }
162workspace = { path = "../workspace", features = ["test-support"] }
163
164unindent.workspace = true
165
166[package.metadata.bundle-dev]
167icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
168identifier = "dev.zed.Zed-Dev"
169name = "Zed Dev"
170osx_minimum_system_version = "10.15.7"
171osx_info_plist_exts = ["resources/info/*"]
172osx_url_schemes = ["zed-dev"]
173
174[package.metadata.bundle-nightly]
175icon = ["resources/app-icon-nightly@2x.png", "resources/app-icon-nightly.png"]
176identifier = "dev.zed.Zed-Nightly"
177name = "Zed Nightly"
178osx_minimum_system_version = "10.15.7"
179osx_info_plist_exts = ["resources/info/*"]
180osx_url_schemes = ["zed-nightly"]
181
182[package.metadata.bundle-preview]
183icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
184identifier = "dev.zed.Zed-Preview"
185name = "Zed Preview"
186osx_minimum_system_version = "10.15.7"
187osx_info_plist_exts = ["resources/info/*"]
188osx_url_schemes = ["zed-preview"]
189
190[package.metadata.bundle-stable]
191icon = ["resources/app-icon@2x.png", "resources/app-icon.png"]
192identifier = "dev.zed.Zed"
193name = "Zed"
194osx_minimum_system_version = "10.15.7"
195osx_info_plist_exts = ["resources/info/*"]
196osx_url_schemes = ["zed"]