1[package]
2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
3description = "The fast, collaborative code editor."
4edition = "2021"
5name = "zed"
6version = "0.103.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[dependencies]
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" }
29component_test = { path = "../component_test" }
30context_menu = { path = "../context_menu" }
31client = { path = "../client" }
32clock = { path = "../clock" }
33copilot = { path = "../copilot" }
34copilot_button = { path = "../copilot_button" }
35diagnostics = { path = "../diagnostics" }
36db = { path = "../db" }
37editor = { path = "../editor" }
38feedback = { path = "../feedback" }
39file_finder = { path = "../file_finder" }
40search = { path = "../search" }
41fs = { path = "../fs" }
42fsevent = { path = "../fsevent" }
43fuzzy = { path = "../fuzzy" }
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" }
51language_tools = { path = "../language_tools" }
52node_runtime = { path = "../node_runtime" }
53ai = { path = "../ai" }
54outline = { path = "../outline" }
55plugin_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" }
61rpc = { path = "../rpc" }
62settings = { path = "../settings" }
63feature_flags = { path = "../feature_flags" }
64sum_tree = { path = "../sum_tree" }
65text = { path = "../text" }
66terminal_view = { path = "../terminal_view" }
67theme = { path = "../theme" }
68theme_selector = { path = "../theme_selector" }
69util = { path = "../util" }
70semantic_index = { path = "../semantic_index" }
71vim = { path = "../vim" }
72workspace = { path = "../workspace" }
73welcome = { path = "../welcome" }
74zed-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
102simplelog = "0.9"
103smallvec.workspace = true
104smol.workspace = true
105tempdir.workspace = true
106thiserror.workspace = true
107tiny_http = "0.8"
108toml.workspace = true
109tree-sitter.workspace = true
110tree-sitter-bash.workspace = true
111tree-sitter-c.workspace = true
112tree-sitter-cpp.workspace = true
113tree-sitter-css.workspace = true
114tree-sitter-elixir.workspace = true
115tree-sitter-elm.workspace = true
116tree-sitter-embedded-template.workspace = true
117tree-sitter-glsl.workspace = true
118tree-sitter-go.workspace = true
119tree-sitter-heex.workspace = true
120tree-sitter-json.workspace = true
121tree-sitter-rust.workspace = true
122tree-sitter-markdown.workspace = true
123tree-sitter-python.workspace = true
124tree-sitter-toml.workspace = true
125tree-sitter-typescript.workspace = true
126tree-sitter-ruby.workspace = true
127tree-sitter-html.workspace = true
128tree-sitter-php.workspace = true
129tree-sitter-scheme.workspace = true
130tree-sitter-svelte.workspace = true
131tree-sitter-racket.workspace = true
132tree-sitter-yaml.workspace = true
133tree-sitter-lua.workspace = true
134tree-sitter-nix.workspace = true
135
136url = "2.2"
137urlencoding = "2.1.2"
138uuid = { version = "1.1.2", features = ["v4"] }
139
140[dev-dependencies]
141call = { path = "../call", features = ["test-support"] }
142client = { path = "../client", features = ["test-support"] }
143editor = { path = "../editor", features = ["test-support"] }
144gpui = { path = "../gpui", features = ["test-support"] }
145language = { path = "../language", features = ["test-support"] }
146lsp = { path = "../lsp", features = ["test-support"] }
147project = { path = "../project", features = ["test-support"] }
148rpc = { path = "../rpc", features = ["test-support"] }
149settings = { path = "../settings", features = ["test-support"] }
150text = { path = "../text", features = ["test-support"] }
151util = { path = "../util", features = ["test-support"] }
152workspace = { path = "../workspace", features = ["test-support"] }
153
154unindent.workspace = true
155
156[package.metadata.bundle-dev]
157icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
158identifier = "dev.zed.Zed-Dev"
159name = "Zed Dev"
160osx_minimum_system_version = "10.15.7"
161osx_info_plist_exts = ["resources/info/*"]
162
163[package.metadata.bundle-preview]
164icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
165identifier = "dev.zed.Zed-Preview"
166name = "Zed Preview"
167osx_minimum_system_version = "10.15.7"
168osx_info_plist_exts = ["resources/info/*"]
169
170
171[package.metadata.bundle-stable]
172icon = ["resources/app-icon@2x.png", "resources/app-icon.png"]
173identifier = "dev.zed.Zed"
174name = "Zed"
175osx_minimum_system_version = "10.15.7"
176osx_info_plist_exts = ["resources/info/*"]