1[package]
2authors = ["Nathan Sobo <nathansobo@gmail.com>"]
3description = "The fast, collaborative code editor."
4edition = "2021"
5name = "zed"
6version = "0.61.1"
7
8[lib]
9name = "zed"
10path = "src/zed.rs"
11doctest = false
12
13[[bin]]
14name = "Zed"
15path = "src/main.rs"
16
17[dependencies]
18activity_indicator = { path = "../activity_indicator" }
19assets = { path = "../assets" }
20auto_update = { path = "../auto_update" }
21breadcrumbs = { path = "../breadcrumbs" }
22call = { path = "../call" }
23chat_panel = { path = "../chat_panel" }
24cli = { path = "../cli" }
25collab_ui = { path = "../collab_ui" }
26collections = { path = "../collections" }
27command_palette = { path = "../command_palette" }
28context_menu = { path = "../context_menu" }
29client = { path = "../client" }
30clock = { path = "../clock" }
31diagnostics = { path = "../diagnostics" }
32editor = { path = "../editor" }
33file_finder = { path = "../file_finder" }
34search = { path = "../search" }
35fs = { path = "../fs" }
36fsevent = { path = "../fsevent" }
37fuzzy = { path = "../fuzzy" }
38go_to_line = { path = "../go_to_line" }
39gpui = { path = "../gpui" }
40journal = { path = "../journal" }
41language = { path = "../language" }
42lsp = { path = "../lsp" }
43outline = { path = "../outline" }
44plugin_runtime = { path = "../plugin_runtime" }
45project = { path = "../project" }
46project_panel = { path = "../project_panel" }
47project_symbols = { path = "../project_symbols" }
48rpc = { path = "../rpc" }
49settings = { path = "../settings" }
50sum_tree = { path = "../sum_tree" }
51text = { path = "../text" }
52terminal = { path = "../terminal" }
53theme = { path = "../theme" }
54theme_selector = { path = "../theme_selector" }
55util = { path = "../util" }
56vim = { path = "../vim" }
57workspace = { path = "../workspace" }
58anyhow = "1.0.38"
59async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
60async-recursion = "0.3"
61async-trait = "0.1"
62backtrace = "0.3"
63chrono = "0.4"
64ctor = "0.1.20"
65dirs = "3.0"
66easy-parallel = "3.1.0"
67env_logger = "0.9"
68futures = "0.3"
69ignore = "0.4"
70image = "0.23"
71indexmap = "1.6.2"
72isahc = "1.7"
73lazy_static = "1.4.0"
74libc = "0.2"
75log = { version = "0.4.16", features = ["kv_unstable_serde"] }
76num_cpus = "1.13.0"
77parking_lot = "0.11.1"
78postage = { version = "0.4.1", features = ["futures-traits"] }
79rand = "0.8.3"
80regex = "1.5"
81rsa = "0.4"
82rust-embed = { version = "6.3", features = ["include-exclude"] }
83serde = { version = "1.0", features = ["derive", "rc"] }
84serde_json = { version = "1.0", features = ["preserve_order"] }
85serde_path_to_error = "0.1.4"
86simplelog = "0.9"
87smallvec = { version = "1.6", features = ["union"] }
88smol = "1.2.5"
89tempdir = { version = "0.3.7" }
90thiserror = "1.0.29"
91tiny_http = "0.8"
92toml = "0.5"
93tree-sitter = "0.20"
94tree-sitter-c = "0.20.1"
95tree-sitter-cpp = "0.20.0"
96tree-sitter-css = { git = "https://github.com/tree-sitter/tree-sitter-css", rev = "769203d0f9abe1a9a691ac2b9fe4bb4397a73c51" }
97tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "05e3631c6a0701c1fa518b0fee7be95a2ceef5e2" }
98tree-sitter-go = { git = "https://github.com/tree-sitter/tree-sitter-go", rev = "aeb2f33b366fd78d5789ff104956ce23508b85db" }
99tree-sitter-json = { git = "https://github.com/tree-sitter/tree-sitter-json", rev = "137e1ce6a02698fc246cdb9c6b886ed1de9a1ed8" }
100tree-sitter-rust = "0.20.1"
101tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
102tree-sitter-python = "0.20.2"
103tree-sitter-toml = { git = "https://github.com/tree-sitter/tree-sitter-toml", rev = "342d9be207c2dba869b9967124c679b5e6fd0ebe" }
104tree-sitter-typescript = "0.20.1"
105tree-sitter-html = "0.19.0"
106url = "2.2"
107
108[dev-dependencies]
109call = { path = "../call", features = ["test-support"] }
110client = { path = "../client", features = ["test-support"] }
111editor = { path = "../editor", features = ["test-support"] }
112gpui = { path = "../gpui", features = ["test-support"] }
113language = { path = "../language", features = ["test-support"] }
114lsp = { path = "../lsp", features = ["test-support"] }
115project = { path = "../project", features = ["test-support"] }
116rpc = { path = "../rpc", features = ["test-support"] }
117settings = { path = "../settings", features = ["test-support"] }
118text = { path = "../text", features = ["test-support"] }
119util = { path = "../util", features = ["test-support"] }
120workspace = { path = "../workspace", features = ["test-support"] }
121
122env_logger = "0.9"
123serde_json = { version = "1.0", features = ["preserve_order"] }
124unindent = "0.1.7"
125
126[package.metadata.bundle]
127icon = ["app-icon@2x.png", "app-icon.png"]
128identifier = "dev.zed.Zed"
129name = "Zed"
130osx_minimum_system_version = "10.14"