[package] name = "collab_ui" 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 = { path = "../editor" } 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 = { path = "../rich_text" } picker = { path = "../picker" } project = { package = "project2", path = "../project2" } recent_projects = { path = "../recent_projects" } rpc = { package ="rpc2", path = "../rpc2" } settings = { package = "settings2", path = "../settings2" } feature_flags = { path = "../feature_flags"} theme = { package = "theme2", path = "../theme2" } theme_selector = { path = "../theme_selector" } vcs_menu = { path = "../vcs_menu" } ui = { package = "ui2", path = "../ui2" } util = { path = "../util" } workspace = { path = "../workspace" } zed_actions = { path = "../zed_actions"} 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 = { path = "../editor", 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 = { path = "../workspace", features = ["test-support"] } pretty_assertions.workspace = true tree-sitter-markdown.workspace = true