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."
|
2021-02-20 17:02:34 +00:00
|
|
|
edition = "2018"
|
|
|
|
name = "zed"
|
2021-11-30 16:43:51 +00:00
|
|
|
version = "0.9.0"
|
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"
|
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-06-23 23:36:03 +00:00
|
|
|
[features]
|
2021-10-04 14:50:12 +00:00
|
|
|
test-support = [
|
2021-11-30 19:26:12 +00:00
|
|
|
"text/test-support",
|
2021-10-05 00:14:21 +00:00
|
|
|
"client/test-support",
|
2021-10-30 13:40:20 +00:00
|
|
|
"editor/test-support",
|
2021-10-04 14:50:12 +00:00
|
|
|
"gpui/test-support",
|
2021-10-20 20:51:40 +00:00
|
|
|
"language/test-support",
|
2021-11-02 21:57:24 +00:00
|
|
|
"lsp/test-support",
|
2021-10-04 23:45:05 +00:00
|
|
|
"project/test-support",
|
|
|
|
"rpc/test-support",
|
2021-10-04 14:50:12 +00:00
|
|
|
"tempdir",
|
2021-10-30 13:40:20 +00:00
|
|
|
"workspace/test-support",
|
2021-10-04 14:50:12 +00:00
|
|
|
]
|
2021-06-23 23:36:03 +00:00
|
|
|
|
2021-02-20 17:02:34 +00:00
|
|
|
[dependencies]
|
2021-11-30 19:26:12 +00:00
|
|
|
text = { path = "../text" }
|
2021-10-05 12:23:45 +00:00
|
|
|
chat_panel = { path = "../chat_panel" }
|
2021-10-05 00:14:21 +00:00
|
|
|
client = { path = "../client" }
|
2021-10-04 22:36:52 +00:00
|
|
|
clock = { path = "../clock" }
|
|
|
|
fsevent = { path = "../fsevent" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
editor = { path = "../editor" }
|
2021-10-05 12:30:56 +00:00
|
|
|
file_finder = { path = "../file_finder" }
|
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" }
|
2021-10-20 20:51:40 +00:00
|
|
|
language = { path = "../language" }
|
2021-11-02 21:57:24 +00:00
|
|
|
lsp = { path = "../lsp" }
|
2021-11-26 18:13:05 +00:00
|
|
|
contacts_panel = { path = "../contacts_panel" }
|
2021-10-04 23:45:05 +00:00
|
|
|
project = { path = "../project" }
|
2021-10-05 12:19:57 +00:00
|
|
|
project_panel = { path = "../project_panel" }
|
2021-10-04 22:36:52 +00:00
|
|
|
rpc = { path = "../rpc" }
|
|
|
|
sum_tree = { path = "../sum_tree" }
|
2021-10-05 09:14:30 +00:00
|
|
|
theme = { path = "../theme" }
|
2021-10-05 13:38:25 +00:00
|
|
|
theme_selector = { path = "../theme_selector" }
|
2021-10-04 22:36:52 +00:00
|
|
|
util = { path = "../util" }
|
2021-10-05 11:45:19 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2021-03-10 04:00:51 +00:00
|
|
|
anyhow = "1.0.38"
|
2021-09-15 09:45:08 +00:00
|
|
|
async-recursion = "0.3"
|
2021-07-09 08:58:07 +00:00
|
|
|
async-trait = "0.1"
|
2021-07-12 20:14:39 +00:00
|
|
|
async-tungstenite = { version = "0.14", features = ["async-tls"] }
|
2021-03-18 23:54:35 +00:00
|
|
|
crossbeam-channel = "0.5.0"
|
2021-04-20 04:01:54 +00:00
|
|
|
ctor = "0.1.20"
|
2021-02-20 17:02:34 +00:00
|
|
|
dirs = "3.0"
|
2021-03-18 19:13:31 +00:00
|
|
|
easy-parallel = "3.1.0"
|
2021-06-14 17:59:46 +00:00
|
|
|
futures = "0.3"
|
2021-06-11 05:12:04 +00:00
|
|
|
http-auth-basic = "0.1.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"
|
2021-03-10 04:00:51 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-02-20 17:02:34 +00:00
|
|
|
libc = "0.2"
|
|
|
|
log = "0.4"
|
2021-09-15 10:51:22 +00:00
|
|
|
log-panics = { version = "2.0", features = ["with-backtrace"] }
|
2021-03-18 19:13:31 +00:00
|
|
|
num_cpus = "1.13.0"
|
|
|
|
parking_lot = "0.11.1"
|
2021-07-12 20:14:39 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2021-03-10 04:00:51 +00:00
|
|
|
rand = "0.8.3"
|
2021-06-08 20:07:06 +00:00
|
|
|
rsa = "0.4"
|
2021-09-04 15:02:20 +00:00
|
|
|
rust-embed = { version = "6.2", features = ["include-exclude"] }
|
2021-07-12 20:14:39 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-07-31 00:22:59 +00:00
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
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"
|
2021-06-11 05:12:04 +00:00
|
|
|
surf = "2.2"
|
2021-07-12 20:14:39 +00:00
|
|
|
tempdir = { version = "0.3.7", optional = true }
|
2021-09-15 01:19:11 +00:00
|
|
|
thiserror = "1.0.29"
|
2021-10-05 00:30:11 +00:00
|
|
|
time = "0.3"
|
2021-06-11 17:28:00 +00:00
|
|
|
tiny_http = "0.8"
|
2021-05-24 22:38:43 +00:00
|
|
|
toml = "0.5"
|
2021-12-06 05:37:08 +00:00
|
|
|
tree-sitter = "0.20.0"
|
|
|
|
tree-sitter-rust = "0.20.0"
|
2021-12-06 05:37:31 +00:00
|
|
|
tree-sitter-markdown = { git = "https://github.com/maxbrunsfeld/tree-sitter-markdown", rev = "b2b4eefd51ada972ef8bb581b83b6b8e7a28c7a6" }
|
2021-06-08 01:15:11 +00:00
|
|
|
url = "2.2"
|
2021-03-18 19:13:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-30 19:26:12 +00:00
|
|
|
text = { path = "../text", 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"] }
|
2021-10-05 00:14:21 +00:00
|
|
|
client = { path = "../client", 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"] }
|
2021-10-04 22:36:52 +00:00
|
|
|
env_logger = "0.8"
|
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
|
|
tempdir = { version = "0.3.7" }
|
|
|
|
unindent = "0.1.7"
|
2021-04-28 21:02:02 +00:00
|
|
|
|
|
|
|
[package.metadata.bundle]
|
|
|
|
icon = ["app-icon@2x.png", "app-icon.png"]
|
|
|
|
identifier = "dev.zed.Zed"
|
|
|
|
name = "Zed"
|
2021-05-10 20:14:04 +00:00
|
|
|
osx_minimum_system_version = "10.14"
|