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]
21anyhow.workspace = true
22channel = { path = "../channel" }
23client = { path = "../client" }
24clock = { path = "../clock" }
25collections = { path = "../collections" }
26db = { path = "../db" }
27feature_flags = { path = "../feature_flags" }
28gpui = { path = "../gpui" }
29rpc = { path = "../rpc" }
30settings = { path = "../settings" }
31sum_tree = { path = "../sum_tree" }
32text = { path = "../text" }
33time.workspace = true
34util = { path = "../util" }
35
36[dev-dependencies]
37client = { path = "../client", features = ["test-support"] }
38collections = { path = "../collections", features = ["test-support"] }
39gpui = { path = "../gpui", features = ["test-support"] }
40rpc = { path = "../rpc", features = ["test-support"] }
41settings = { path = "../settings", features = ["test-support"] }
42util = { path = "../util", features = ["test-support"] }