mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
121 lines
3.8 KiB
TOML
121 lines
3.8 KiB
TOML
[workspace]
|
|
members = [
|
|
"crates/activity_indicator",
|
|
"crates/ai",
|
|
"crates/auto_update",
|
|
"crates/breadcrumbs",
|
|
"crates/call",
|
|
"crates/cli",
|
|
"crates/client",
|
|
"crates/clock",
|
|
"crates/collab",
|
|
"crates/collab_ui",
|
|
"crates/collections",
|
|
"crates/command_palette",
|
|
"crates/context_menu",
|
|
"crates/copilot",
|
|
"crates/copilot_button",
|
|
"crates/db",
|
|
"crates/diagnostics",
|
|
"crates/drag_and_drop",
|
|
"crates/editor",
|
|
"crates/feedback",
|
|
"crates/file_finder",
|
|
"crates/fs",
|
|
"crates/fsevent",
|
|
"crates/fuzzy",
|
|
"crates/git",
|
|
"crates/go_to_line",
|
|
"crates/gpui",
|
|
"crates/gpui_macros",
|
|
"crates/install_cli",
|
|
"crates/journal",
|
|
"crates/language",
|
|
"crates/language_selector",
|
|
"crates/language_tools",
|
|
"crates/live_kit_client",
|
|
"crates/live_kit_server",
|
|
"crates/lsp",
|
|
"crates/media",
|
|
"crates/menu",
|
|
"crates/node_runtime",
|
|
"crates/outline",
|
|
"crates/picker",
|
|
"crates/plugin",
|
|
"crates/plugin_macros",
|
|
"crates/plugin_runtime",
|
|
"crates/project",
|
|
"crates/project_panel",
|
|
"crates/project_symbols",
|
|
"crates/recent_projects",
|
|
"crates/rope",
|
|
"crates/rpc",
|
|
"crates/search",
|
|
"crates/settings",
|
|
"crates/snippet",
|
|
"crates/sqlez",
|
|
"crates/sqlez_macros",
|
|
"crates/staff_mode",
|
|
"crates/sum_tree",
|
|
"crates/terminal",
|
|
"crates/text",
|
|
"crates/theme",
|
|
"crates/theme_selector",
|
|
"crates/theme_testbench",
|
|
"crates/util",
|
|
"crates/vim",
|
|
"crates/workspace",
|
|
"crates/welcome",
|
|
"crates/zed",
|
|
]
|
|
default-members = ["crates/zed"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = { version = "1.0.57" }
|
|
async-trait = { version = "0.1" }
|
|
ctor = { version = "0.1" }
|
|
env_logger = { version = "0.9" }
|
|
futures = { version = "0.3" }
|
|
globset = { version = "0.4" }
|
|
indoc = "1"
|
|
isahc = "1.7.2"
|
|
lazy_static = { version = "1.4.0" }
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
ordered-float = { version = "2.1.1" }
|
|
parking_lot = { version = "0.11.1" }
|
|
postage = { version = "0.5", features = ["futures-traits"] }
|
|
rand = { version = "0.8.5" }
|
|
regex = { version = "1.5" }
|
|
rust-embed = { version = "6.3", features = ["include-exclude"] }
|
|
schemars = { version = "0.8" }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
smol = { version = "1.2" }
|
|
tempdir = { version = "0.3.7" }
|
|
thiserror = { version = "1.0.29" }
|
|
time = { version = "0.3", features = ["serde", "serde-well-known"] }
|
|
toml = { version = "0.5" }
|
|
tree-sitter = "0.20"
|
|
unindent = { version = "0.1.7" }
|
|
|
|
[patch.crates-io]
|
|
tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "a2119cb6914d62e626fcc40684ef900d7fa90d86" }
|
|
async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
|
|
|
|
# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
|
|
cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
[profile.dev]
|
|
split-debuginfo = "unpacked"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
lto = "thin"
|