mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
babd41916a
Co-authored-by: Mikayla <mikayla@zed.dev>
82 lines
3.1 KiB
TOML
82 lines
3.1 KiB
TOML
[package]
|
|
name = "collab_ui2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/collab_ui.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"call/test-support",
|
|
"client/test-support",
|
|
"collections/test-support",
|
|
"editor/test-support",
|
|
"gpui/test-support",
|
|
"project/test-support",
|
|
"settings/test-support",
|
|
"util/test-support",
|
|
"workspace/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
# auto_update = { path = "../auto_update" }
|
|
db = { package = "db2", path = "../db2" }
|
|
call = { package = "call2", path = "../call2" }
|
|
client = { package = "client2", path = "../client2" }
|
|
channel = { package = "channel2", path = "../channel2" }
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
# context_menu = { path = "../context_menu" }
|
|
# drag_and_drop = { path = "../drag_and_drop" }
|
|
editor = { package="editor2", path = "../editor2" }
|
|
#feedback = { path = "../feedback" }
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
language = { package = "language2", path = "../language2" }
|
|
menu = { package = "menu2", path = "../menu2" }
|
|
notifications = { package = "notifications2", path = "../notifications2" }
|
|
rich_text = { package = "rich_text2", path = "../rich_text2" }
|
|
picker = { package = "picker2", path = "../picker2" }
|
|
project = { package = "project2", path = "../project2" }
|
|
# recent_projects = { path = "../recent_projects" }
|
|
rpc = { package ="rpc2", path = "../rpc2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
feature_flags = { package = "feature_flags2", path = "../feature_flags2"}
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
# theme_selector = { path = "../theme_selector" }
|
|
# vcs_menu = { path = "../vcs_menu" }
|
|
ui = { package = "ui2", path = "../ui2" }
|
|
util = { path = "../util" }
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
zed-actions = { package="zed_actions2", path = "../zed_actions2"}
|
|
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
schemars.workspace = true
|
|
postage.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
time.workspace = true
|
|
smallvec.workspace = true
|
|
|
|
[dev-dependencies]
|
|
call = { package = "call2", path = "../call2", features = ["test-support"] }
|
|
client = { package = "client2", path = "../client2", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
notifications = { package = "notifications2", path = "../notifications2", features = ["test-support"] }
|
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
|
rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
|
|
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|
|
|
|
pretty_assertions.workspace = true
|
|
tree-sitter-markdown.workspace = true
|