mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
117 lines
3.4 KiB
TOML
117 lines
3.4 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
|
|
description = "The fast, collaborative code editor."
|
|
edition = "2021"
|
|
name = "zed"
|
|
version = "0.14.0"
|
|
|
|
[lib]
|
|
name = "zed"
|
|
path = "src/zed.rs"
|
|
|
|
[[bin]]
|
|
name = "Zed"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
test-support = [
|
|
"text/test-support",
|
|
"client/test-support",
|
|
"editor/test-support",
|
|
"gpui/test-support",
|
|
"language/test-support",
|
|
"lsp/test-support",
|
|
"project/test-support",
|
|
"rpc/test-support",
|
|
"tempdir",
|
|
"workspace/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
chat_panel = { path = "../chat_panel" }
|
|
collections = { path = "../collections" }
|
|
client = { path = "../client" }
|
|
clock = { path = "../clock" }
|
|
contacts_panel = { path = "../contacts_panel" }
|
|
diagnostics = { path = "../diagnostics" }
|
|
editor = { path = "../editor" }
|
|
file_finder = { path = "../file_finder" }
|
|
find = { path = "../find" }
|
|
fsevent = { path = "../fsevent" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
go_to_line = { path = "../go_to_line" }
|
|
gpui = { path = "../gpui" }
|
|
journal = { path = "../journal" }
|
|
language = { path = "../language" }
|
|
lsp = { path = "../lsp" }
|
|
outline = { path = "../outline" }
|
|
project = { path = "../project" }
|
|
project_panel = { path = "../project_panel" }
|
|
rpc = { path = "../rpc" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
text = { path = "../text" }
|
|
theme = { path = "../theme" }
|
|
theme_selector = { path = "../theme_selector" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
anyhow = "1.0.38"
|
|
async-recursion = "0.3"
|
|
async-trait = "0.1"
|
|
crossbeam-channel = "0.5.0"
|
|
ctor = "0.1.20"
|
|
dirs = "3.0"
|
|
easy-parallel = "3.1.0"
|
|
futures = "0.3"
|
|
http-auth-basic = "0.1.3"
|
|
ignore = "0.4"
|
|
image = "0.23"
|
|
indexmap = "1.6.2"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
log-panics = { version = "2.0", features = ["with-backtrace"] }
|
|
num_cpus = "1.13.0"
|
|
parking_lot = "0.11.1"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
rand = "0.8.3"
|
|
regex = "1.5"
|
|
rsa = "0.4"
|
|
rust-embed = { version = "6.2", features = ["include-exclude"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
serde_path_to_error = "0.1.4"
|
|
simplelog = "0.9"
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
smol = "1.2.5"
|
|
surf = "2.2"
|
|
tempdir = { version = "0.3.7", optional = true }
|
|
thiserror = "1.0.29"
|
|
time = "0.3"
|
|
tiny_http = "0.8"
|
|
toml = "0.5"
|
|
tree-sitter = "0.20.0"
|
|
tree-sitter-rust = "0.20.0"
|
|
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
|
|
url = "2.2"
|
|
|
|
[dev-dependencies]
|
|
text = { path = "../text", features = ["test-support"] }
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
client = { path = "../client", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
env_logger = "0.8"
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
tempdir = { version = "0.3.7" }
|
|
unindent = "0.1.7"
|
|
|
|
[package.metadata.bundle]
|
|
icon = ["app-icon@2x.png", "app-icon.png"]
|
|
identifier = "dev.zed.Zed"
|
|
name = "Zed"
|
|
osx_minimum_system_version = "10.14"
|