Cargo.toml

 1[package]
 2name = "collab_ui"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-only"
 7
 8
 9[lib]
10path = "src/collab_ui.rs"
11doctest = false
12
13[features]
14default = []
15stories = ["dep:story"]
16test-support = [
17    "call/test-support",
18    "client/test-support",
19    "collections/test-support",
20    "editor/test-support",
21    "gpui/test-support",
22    "project/test-support",
23    "settings/test-support",
24    "util/test-support",
25    "workspace/test-support",
26]
27
28[dependencies]
29auto_update = { path = "../auto_update" }
30db = { path = "../db" }
31call = { path = "../call" }
32client = { path = "../client" }
33channel = { path = "../channel" }
34clock = { path = "../clock" }
35collections = { path = "../collections" }
36# context_menu = { path = "../context_menu" }
37# drag_and_drop = { path = "../drag_and_drop" }
38editor = { path = "../editor" }
39feedback = { path = "../feedback" }
40fuzzy = {  path = "../fuzzy" }
41gpui = { path = "../gpui" }
42language = { path = "../language" }
43menu = {  path = "../menu" }
44notifications = { path = "../notifications" }
45rich_text = { path = "../rich_text" }
46picker = { path = "../picker" }
47project = { path = "../project" }
48recent_projects = { path = "../recent_projects" }
49rpc = { path = "../rpc" }
50settings = { path = "../settings" }
51story = { path = "../story", optional = true }
52feature_flags = { path = "../feature_flags"}
53theme = { path = "../theme" }
54theme_selector = { path = "../theme_selector" }
55vcs_menu = { path = "../vcs_menu" }
56ui = { path = "../ui" }
57util = { path = "../util" }
58workspace = { path = "../workspace" }
59zed_actions = { path = "../zed_actions"}
60
61anyhow.workspace = true
62futures.workspace = true
63lazy_static.workspace = true
64log.workspace = true
65parking_lot.workspace = true
66schemars.workspace = true
67postage.workspace = true
68serde.workspace = true
69serde_derive.workspace = true
70serde_json.workspace = true
71time.workspace = true
72smallvec.workspace = true
73
74[dev-dependencies]
75call = { path = "../call", features = ["test-support"] }
76client = { path = "../client", features = ["test-support"] }
77collections = { path = "../collections", features = ["test-support"] }
78editor = { path = "../editor", features = ["test-support"] }
79gpui = { path = "../gpui", features = ["test-support"] }
80notifications = { path = "../notifications", features = ["test-support"] }
81project = { path = "../project", features = ["test-support"] }
82rpc = { path = "../rpc", features = ["test-support"] }
83settings = { path = "../settings", features = ["test-support"] }
84util = { path = "../util", features = ["test-support"] }
85workspace = { path = "../workspace", features = ["test-support"] }
86
87pretty_assertions.workspace = true
88tree-sitter-markdown.workspace = true