Cargo.toml

 1[package]
 2name = "notifications"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/notification_store.rs"
10doctest = false
11
12[features]
13test-support = [
14    "channel/test-support",
15    "collections/test-support",
16    "gpui/test-support",
17    "rpc/test-support",
18]
19
20[dependencies]
21channel = { path = "../channel" }
22client = { path = "../client" }
23clock = { path = "../clock" }
24collections = { path = "../collections" }
25db = { path = "../db" }
26feature_flags = { path = "../feature_flags" }
27gpui = { path = "../gpui" }
28rpc = { path = "../rpc" }
29settings = { path = "../settings" }
30sum_tree = { path = "../sum_tree" }
31text = { path = "../text" }
32util = { path = "../util" }
33
34anyhow.workspace = true
35time.workspace = true
36
37[dev-dependencies]
38client = { path = "../client", features = ["test-support"] }
39collections = { path = "../collections", features = ["test-support"] }
40gpui = { path = "../gpui", features = ["test-support"] }
41rpc = { path = "../rpc", features = ["test-support"] }
42settings = { path = "../settings", features = ["test-support"] }
43util = { path = "../util", features = ["test-support"] }