2021-02-20 17:02:34 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
|
2021-04-28 21:02:02 +00:00
|
|
|
description = "The fast, collaborative code editor."
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2021-02-20 17:02:34 +00:00
|
|
|
name = "zed"
|
2023-03-22 20:33:06 +00:00
|
|
|
version = "0.80.0"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-02-20 17:02:34 +00:00
|
|
|
|
2021-03-10 04:00:51 +00:00
|
|
|
[lib]
|
|
|
|
name = "zed"
|
2021-11-30 19:46:39 +00:00
|
|
|
path = "src/zed.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-03-10 04:00:51 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2021-04-13 01:52:30 +00:00
|
|
|
name = "Zed"
|
2021-03-10 04:00:51 +00:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
2021-02-20 17:02:34 +00:00
|
|
|
[dependencies]
|
2022-06-29 23:54:01 +00:00
|
|
|
activity_indicator = { path = "../activity_indicator" }
|
2022-04-11 22:54:52 +00:00
|
|
|
assets = { path = "../assets" }
|
2022-04-04 21:57:21 +00:00
|
|
|
auto_update = { path = "../auto_update" }
|
2022-03-29 12:01:15 +00:00
|
|
|
breadcrumbs = { path = "../breadcrumbs" }
|
2022-09-29 15:39:53 +00:00
|
|
|
call = { path = "../call" }
|
2022-04-15 23:33:56 +00:00
|
|
|
cli = { path = "../cli" }
|
2022-09-28 17:14:31 +00:00
|
|
|
collab_ui = { path = "../collab_ui" }
|
2021-12-24 15:22:22 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-04-13 20:20:59 +00:00
|
|
|
command_palette = { path = "../command_palette" }
|
2022-05-26 13:21:02 +00:00
|
|
|
context_menu = { path = "../context_menu" }
|
2021-10-05 00:14:21 +00:00
|
|
|
client = { path = "../client" }
|
2021-10-04 22:36:52 +00:00
|
|
|
clock = { path = "../clock" }
|
2023-03-23 02:22:08 +00:00
|
|
|
copilot = { path = "../copilot" }
|
2021-12-14 10:32:05 +00:00
|
|
|
diagnostics = { path = "../diagnostics" }
|
2023-03-01 03:20:21 +00:00
|
|
|
db = { path = "../db" }
|
2021-10-04 22:36:52 +00:00
|
|
|
editor = { path = "../editor" }
|
2023-01-09 18:54:37 +00:00
|
|
|
feedback = { path = "../feedback" }
|
2021-10-05 12:30:56 +00:00
|
|
|
file_finder = { path = "../file_finder" }
|
2022-02-27 15:15:38 +00:00
|
|
|
search = { path = "../search" }
|
2022-10-11 22:25:54 +00:00
|
|
|
fs = { path = "../fs" }
|
2021-12-18 15:12:59 +00:00
|
|
|
fsevent = { path = "../fsevent" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
2021-11-24 17:45:36 +00:00
|
|
|
go_to_line = { path = "../go_to_line" }
|
2021-10-04 22:36:52 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2023-03-07 01:55:58 +00:00
|
|
|
install_cli = { path = "../install_cli" }
|
2021-12-18 15:12:59 +00:00
|
|
|
journal = { path = "../journal" }
|
2021-10-20 20:51:40 +00:00
|
|
|
language = { path = "../language" }
|
2023-02-24 14:57:32 +00:00
|
|
|
language_selector = { path = "../language_selector" }
|
2021-11-02 21:57:24 +00:00
|
|
|
lsp = { path = "../lsp" }
|
2022-01-13 02:17:19 +00:00
|
|
|
outline = { path = "../outline" }
|
2022-06-03 12:42:50 +00:00
|
|
|
plugin_runtime = { path = "../plugin_runtime" }
|
2021-10-04 23:45:05 +00:00
|
|
|
project = { path = "../project" }
|
2021-10-05 12:19:57 +00:00
|
|
|
project_panel = { path = "../project_panel" }
|
2022-02-22 07:42:12 +00:00
|
|
|
project_symbols = { path = "../project_symbols" }
|
2022-12-14 23:59:50 +00:00
|
|
|
recent_projects = { path = "../recent_projects" }
|
2021-10-04 22:36:52 +00:00
|
|
|
rpc = { path = "../rpc" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2021-10-04 22:36:52 +00:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2021-12-18 15:12:59 +00:00
|
|
|
text = { path = "../text" }
|
2022-12-06 19:28:56 +00:00
|
|
|
terminal_view = { path = "../terminal_view" }
|
2021-10-05 09:14:30 +00:00
|
|
|
theme = { path = "../theme" }
|
2021-10-05 13:38:25 +00:00
|
|
|
theme_selector = { path = "../theme_selector" }
|
2022-09-21 22:57:39 +00:00
|
|
|
theme_testbench = { path = "../theme_testbench" }
|
2021-10-04 22:36:52 +00:00
|
|
|
util = { path = "../util" }
|
2022-03-25 02:24:36 +00:00
|
|
|
vim = { path = "../vim" }
|
2021-10-05 11:45:19 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-02-22 02:16:47 +00:00
|
|
|
welcome = { path = "../welcome" }
|
2021-03-10 04:00:51 +00:00
|
|
|
anyhow = "1.0.38"
|
2022-02-21 15:07:09 +00:00
|
|
|
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
2023-02-06 07:21:29 +00:00
|
|
|
async-tar = "0.4.2"
|
2021-09-15 09:45:08 +00:00
|
|
|
async-recursion = "0.3"
|
2021-07-09 08:58:07 +00:00
|
|
|
async-trait = "0.1"
|
2022-05-02 13:17:43 +00:00
|
|
|
backtrace = "0.3"
|
|
|
|
chrono = "0.4"
|
2021-04-20 04:01:54 +00:00
|
|
|
ctor = "0.1.20"
|
2021-03-18 19:13:31 +00:00
|
|
|
easy-parallel = "3.1.0"
|
2022-06-03 00:24:57 +00:00
|
|
|
env_logger = "0.9"
|
2021-06-14 17:59:46 +00:00
|
|
|
futures = "0.3"
|
2021-04-22 01:11:52 +00:00
|
|
|
ignore = "0.4"
|
2021-09-14 14:48:44 +00:00
|
|
|
image = "0.23"
|
2021-09-15 18:56:20 +00:00
|
|
|
indexmap = "1.6.2"
|
2022-04-27 03:19:15 +00:00
|
|
|
isahc = "1.7"
|
2021-03-10 04:00:51 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-02-20 17:02:34 +00:00
|
|
|
libc = "0.2"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-03-18 19:13:31 +00:00
|
|
|
num_cpus = "1.13.0"
|
|
|
|
parking_lot = "0.11.1"
|
2023-03-21 00:17:09 +00:00
|
|
|
postage = { workspace = true }
|
2021-03-10 04:00:51 +00:00
|
|
|
rand = "0.8.3"
|
2022-01-25 16:49:50 +00:00
|
|
|
regex = "1.5"
|
2021-06-08 20:07:06 +00:00
|
|
|
rsa = "0.4"
|
2022-02-18 13:55:11 +00:00
|
|
|
rust-embed = { version = "6.3", features = ["include-exclude"] }
|
2023-03-23 09:29:25 +00:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_derive = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2021-08-26 22:02:58 +00:00
|
|
|
serde_path_to_error = "0.1.4"
|
2021-02-20 17:02:34 +00:00
|
|
|
simplelog = "0.9"
|
2021-07-12 20:14:39 +00:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2021-03-18 19:13:31 +00:00
|
|
|
smol = "1.2.5"
|
2022-04-04 16:59:57 +00:00
|
|
|
tempdir = { version = "0.3.7" }
|
2021-09-15 01:19:11 +00:00
|
|
|
thiserror = "1.0.29"
|
2021-06-11 17:28:00 +00:00
|
|
|
tiny_http = "0.8"
|
2021-05-24 22:38:43 +00:00
|
|
|
toml = "0.5"
|
2022-07-08 21:08:35 +00:00
|
|
|
tree-sitter = "0.20"
|
2022-02-22 17:07:28 +00:00
|
|
|
tree-sitter-c = "0.20.1"
|
2022-06-03 08:44:42 +00:00
|
|
|
tree-sitter-cpp = "0.20.0"
|
2022-08-31 18:53:52 +00:00
|
|
|
tree-sitter-css = { git = "https://github.com/tree-sitter/tree-sitter-css", rev = "769203d0f9abe1a9a691ac2b9fe4bb4397a73c51" }
|
2022-08-19 10:05:08 +00:00
|
|
|
tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "05e3631c6a0701c1fa518b0fee7be95a2ceef5e2" }
|
2022-11-03 23:02:29 +00:00
|
|
|
tree-sitter-embedded-template = "0.20.0"
|
2022-06-08 17:44:13 +00:00
|
|
|
tree-sitter-go = { git = "https://github.com/tree-sitter/tree-sitter-go", rev = "aeb2f33b366fd78d5789ff104956ce23508b85db" }
|
2022-04-21 18:58:18 +00:00
|
|
|
tree-sitter-json = { git = "https://github.com/tree-sitter/tree-sitter-json", rev = "137e1ce6a02698fc246cdb9c6b886ed1de9a1ed8" }
|
2022-11-03 19:35:12 +00:00
|
|
|
tree-sitter-rust = "0.20.3"
|
2022-01-11 18:36:31 +00:00
|
|
|
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
|
2022-06-27 22:12:31 +00:00
|
|
|
tree-sitter-python = "0.20.2"
|
2022-04-21 23:39:49 +00:00
|
|
|
tree-sitter-toml = { git = "https://github.com/tree-sitter/tree-sitter-toml", rev = "342d9be207c2dba869b9967124c679b5e6fd0ebe" }
|
2023-02-16 20:24:35 +00:00
|
|
|
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "5d20856f34315b068c41edaee2ac8a100081d259" }
|
|
|
|
|
2022-11-01 22:36:47 +00:00
|
|
|
tree-sitter-ruby = "0.20.0"
|
2022-07-22 10:25:07 +00:00
|
|
|
tree-sitter-html = "0.19.0"
|
2022-11-05 23:18:03 +00:00
|
|
|
tree-sitter-scheme = { git = "https://github.com/6cdh/tree-sitter-scheme", rev = "af0fd1fa452cb2562dc7b5c8a8c55551c39273b9"}
|
2022-12-05 19:29:52 +00:00
|
|
|
tree-sitter-racket = { git = "https://github.com/zed-industries/tree-sitter-racket", rev = "eb010cf2c674c6fd9a6316a84e28ef90190fe51a"}
|
2023-02-07 23:51:00 +00:00
|
|
|
tree-sitter-yaml = { git = "https://github.com/zed-industries/tree-sitter-yaml", rev = "9050a4a4a847ed29e25485b1292a36eab8ae3492"}
|
2023-02-06 07:21:29 +00:00
|
|
|
tree-sitter-lua = "0.0.14"
|
2021-06-08 01:15:11 +00:00
|
|
|
url = "2.2"
|
2023-01-24 23:48:15 +00:00
|
|
|
urlencoding = "2.1.2"
|
2023-01-25 19:30:03 +00:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2021-03-18 19:13:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-29 15:39:53 +00:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-10-04 22:06:12 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2021-09-20 00:34:04 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-20 20:51:40 +00:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2021-11-02 21:57:24 +00:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2021-10-04 23:45:05 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2021-10-04 22:36:52 +00:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2022-09-29 15:39:53 +00:00
|
|
|
text = { path = "../text", features = ["test-support"] }
|
2021-10-04 19:07:35 +00:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2021-10-05 11:45:19 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2022-09-29 15:39:53 +00:00
|
|
|
|
2022-06-03 00:24:57 +00:00
|
|
|
env_logger = "0.9"
|
2023-03-23 09:29:25 +00:00
|
|
|
serde_json = { workspace = true }
|
2021-10-04 22:36:52 +00:00
|
|
|
unindent = "0.1.7"
|
2021-04-28 21:02:02 +00:00
|
|
|
|
2022-10-26 18:20:16 +00:00
|
|
|
[package.metadata.bundle-dev]
|
|
|
|
icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
|
|
|
|
identifier = "dev.zed.Zed-Dev"
|
|
|
|
name = "Zed Dev"
|
|
|
|
osx_minimum_system_version = "10.15.7"
|
|
|
|
|
|
|
|
[package.metadata.bundle-preview]
|
|
|
|
icon = ["resources/app-icon-preview@2x.png", "resources/app-icon-preview.png"]
|
|
|
|
identifier = "dev.zed.Zed-Preview"
|
|
|
|
name = "Zed Preview"
|
|
|
|
osx_minimum_system_version = "10.15.7"
|
|
|
|
|
|
|
|
[package.metadata.bundle-stable]
|
|
|
|
icon = ["resources/app-icon@2x.png", "resources/app-icon.png"]
|
2021-04-28 21:02:02 +00:00
|
|
|
identifier = "dev.zed.Zed"
|
|
|
|
name = "Zed"
|
2022-10-20 14:55:39 +00:00
|
|
|
osx_minimum_system_version = "10.15.7"
|