Cargo.toml

 1[package]
 2name = "notifications"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-only"
 7
 8
 9[lib]
10path = "src/notification_store.rs"
11doctest = false
12
13[features]
14test-support = [
15    "channel/test-support",
16    "collections/test-support",
17    "gpui/test-support",
18    "rpc/test-support",
19]
20
21[dependencies]
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" }
33util = { path = "../util" }
34
35anyhow.workspace = true
36time.workspace = true
37
38[dev-dependencies]
39client = { path = "../client", features = ["test-support"] }
40collections = { path = "../collections", features = ["test-support"] }
41gpui = { path = "../gpui", features = ["test-support"] }
42rpc = { path = "../rpc", features = ["test-support"] }
43settings = { path = "../settings", features = ["test-support"] }
44util = { path = "../util", features = ["test-support"] }