167 lines
6.4 KiB
TOML
167 lines
6.4 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathansobo@gmail.com>"]
|
|
description = "The fast, collaborative code editor."
|
|
edition = "2021"
|
|
name = "zed"
|
|
version = "0.96.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "zed"
|
|
path = "src/zed.rs"
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "Zed"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
audio = { path = "../audio" }
|
|
activity_indicator = { path = "../activity_indicator" }
|
|
auto_update = { path = "../auto_update" }
|
|
breadcrumbs = { path = "../breadcrumbs" }
|
|
call = { path = "../call" }
|
|
cli = { path = "../cli" }
|
|
collab_ui = { path = "../collab_ui" }
|
|
collections = { path = "../collections" }
|
|
command_palette = { path = "../command_palette" }
|
|
context_menu = { path = "../context_menu" }
|
|
client = { path = "../client" }
|
|
clock = { path = "../clock" }
|
|
copilot = { path = "../copilot" }
|
|
copilot_button = { path = "../copilot_button" }
|
|
diagnostics = { path = "../diagnostics" }
|
|
db = { path = "../db" }
|
|
editor = { path = "../editor" }
|
|
feedback = { path = "../feedback" }
|
|
file_finder = { path = "../file_finder" }
|
|
search = { path = "../search" }
|
|
fs = { path = "../fs" }
|
|
fsevent = { path = "../fsevent" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
go_to_line = { path = "../go_to_line" }
|
|
gpui = { path = "../gpui" }
|
|
install_cli = { path = "../install_cli" }
|
|
journal = { path = "../journal" }
|
|
language = { path = "../language" }
|
|
language_selector = { path = "../language_selector" }
|
|
lsp = { path = "../lsp" }
|
|
language_tools = { path = "../language_tools" }
|
|
node_runtime = { path = "../node_runtime" }
|
|
ai = { path = "../ai" }
|
|
outline = { path = "../outline" }
|
|
plugin_runtime = { path = "../plugin_runtime",optional = true }
|
|
project = { path = "../project" }
|
|
project_panel = { path = "../project_panel" }
|
|
project_symbols = { path = "../project_symbols" }
|
|
recent_projects = { path = "../recent_projects" }
|
|
rpc = { path = "../rpc" }
|
|
settings = { path = "../settings" }
|
|
staff_mode = { path = "../staff_mode" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
text = { path = "../text" }
|
|
terminal_view = { path = "../terminal_view" }
|
|
theme = { path = "../theme" }
|
|
theme_selector = { path = "../theme_selector" }
|
|
util = { path = "../util" }
|
|
vector_store = { path = "../vector_store" }
|
|
vim = { path = "../vim" }
|
|
workspace = { path = "../workspace" }
|
|
welcome = { path = "../welcome" }
|
|
zed-actions = {path = "../zed-actions"}
|
|
anyhow.workspace = true
|
|
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
|
async-tar = "0.4.2"
|
|
async-recursion = "0.3"
|
|
async-trait.workspace = true
|
|
backtrace = "0.3"
|
|
chrono = "0.4"
|
|
ctor = "0.1.20"
|
|
env_logger.workspace = true
|
|
futures.workspace = true
|
|
ignore = "0.4"
|
|
image = "0.23"
|
|
indexmap = "1.6.2"
|
|
isahc.workspace = true
|
|
lazy_static.workspace = true
|
|
libc = "0.2"
|
|
log.workspace = true
|
|
num_cpus = "1.13.0"
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
rsa = "0.4"
|
|
rust-embed = { version = "6.3", features = ["include-exclude"] }
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
simplelog = "0.9"
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
tempdir.workspace = true
|
|
thiserror.workspace = true
|
|
tiny_http = "0.8"
|
|
toml.workspace = true
|
|
tree-sitter.workspace = true
|
|
tree-sitter-c = "0.20.1"
|
|
tree-sitter-cpp = "0.20.0"
|
|
tree-sitter-css = { git = "https://github.com/tree-sitter/tree-sitter-css", rev = "769203d0f9abe1a9a691ac2b9fe4bb4397a73c51" }
|
|
tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "4ba9dab6e2602960d95b2b625f3386c27e08084e" }
|
|
tree-sitter-embedded-template = "0.20.0"
|
|
tree-sitter-go = { git = "https://github.com/tree-sitter/tree-sitter-go", rev = "aeb2f33b366fd78d5789ff104956ce23508b85db" }
|
|
tree-sitter-heex = { git = "https://github.com/phoenixframework/tree-sitter-heex", rev = "2e1348c3cf2c9323e87c2744796cf3f3868aa82a" }
|
|
tree-sitter-json = { git = "https://github.com/tree-sitter/tree-sitter-json", rev = "40a81c01a40ac48744e0c8ccabbaba1920441199" }
|
|
tree-sitter-rust = "0.20.3"
|
|
tree-sitter-markdown = { git = "https://github.com/MDeiml/tree-sitter-markdown", rev = "330ecab87a3e3a7211ac69bbadc19eabecdb1cca" }
|
|
tree-sitter-python = "0.20.2"
|
|
tree-sitter-toml = { git = "https://github.com/tree-sitter/tree-sitter-toml", rev = "342d9be207c2dba869b9967124c679b5e6fd0ebe" }
|
|
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "5d20856f34315b068c41edaee2ac8a100081d259" }
|
|
tree-sitter-ruby = "0.20.0"
|
|
tree-sitter-html = "0.19.0"
|
|
tree-sitter-scheme = { git = "https://github.com/6cdh/tree-sitter-scheme", rev = "af0fd1fa452cb2562dc7b5c8a8c55551c39273b9"}
|
|
tree-sitter-racket = { git = "https://github.com/zed-industries/tree-sitter-racket", rev = "eb010cf2c674c6fd9a6316a84e28ef90190fe51a"}
|
|
tree-sitter-yaml = { git = "https://github.com/zed-industries/tree-sitter-yaml", rev = "f545a41f57502e1b5ddf2a6668896c1b0620f930"}
|
|
tree-sitter-svelte = { git = "https://github.com/Himujjal/tree-sitter-svelte", rev = "697bb515471871e85ff799ea57a76298a71a9cca"}
|
|
tree-sitter-lua = "0.0.14"
|
|
url = "2.2"
|
|
urlencoding = "2.1.2"
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
call = { path = "../call", features = ["test-support"] }
|
|
client = { path = "../client", 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"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
text = { path = "../text", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
|
|
unindent.workspace = true
|
|
|
|
[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"
|
|
osx_info_plist_exts = ["resources/info/*"]
|
|
|
|
[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"
|
|
osx_info_plist_exts = ["resources/info/*"]
|
|
|
|
|
|
[package.metadata.bundle-stable]
|
|
icon = ["resources/app-icon@2x.png", "resources/app-icon.png"]
|
|
identifier = "dev.zed.Zed"
|
|
name = "Zed"
|
|
osx_minimum_system_version = "10.15.7"
|
|
osx_info_plist_exts = ["resources/info/*"]
|