1[package]
2name = "notifications2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/notification_store2.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 = { package = "channel2", path = "../channel2" }
21client = { package = "client2", path = "../client2" }
22clock = { path = "../clock" }
23collections = { path = "../collections" }
24db = { package = "db2", path = "../db2" }
25feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
26gpui = { package = "gpui2", path = "../gpui2" }
27rpc = { package = "rpc2", path = "../rpc2" }
28settings = { package = "settings2", path = "../settings2" }
29sum_tree = { path = "../sum_tree" }
30text = { package = "text2", path = "../text2" }
31util = { path = "../util" }
32
33anyhow.workspace = true
34time.workspace = true
35
36[dev-dependencies]
37client = { package = "client2", path = "../client2", features = ["test-support"] }
38collections = { path = "../collections", features = ["test-support"] }
39gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
40rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
41settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
42util = { path = "../util", features = ["test-support"] }