Cargo.toml

 1[package]
 2name = "notifications"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/notification_store.rs"
 9doctest = false
10
11[features]
12test-support = [
13    "channel/test-support",
14    "collections/test-support",
15    "gpui/test-support",
16    "rpc/test-support",
17]
18
19[dependencies]
20channel = { path = "../channel" }
21client = { path = "../client" }
22clock = { path = "../clock" }
23collections = { path = "../collections" }
24db = { path = "../db" }
25feature_flags = { path = "../feature_flags" }
26gpui = { path = "../gpui" }
27rpc = { path = "../rpc" }
28settings = { path = "../settings" }
29sum_tree = { path = "../sum_tree" }
30text = { path = "../text" }
31util = { path = "../util" }
32
33anyhow.workspace = true
34time.workspace = true
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"] }