-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
68 lines (63 loc) · 2.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "cosmic-notifications"
version = "0.1.0"
authors = ["Ashley Wulber <ashley@system76.com>"]
edition = "2021"
[dependencies]
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
"autosize",
"a11y",
"winit",
"multi-window",
"wayland",
"tokio",
"dbus-config",
] }
anyhow = "1.0"
async-stream = "0.3.5"
console-subscriber = "0.2.0"
i18n-embed = { version = "0.14.1", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.8.0"
cosmic-time = { git = "https://github.com/pop-os/cosmic-time", default-features = false, features = [
"once_cell",
] }
tracing = "0.1"
nix = "0.26.2"
once_cell = "1.17"
tracing-subscriber = "0.3.17"
tracing-journald = { version = "0.3.0", optional = true }
rust-embed = "8.4.0"
serde = { version = "1.0.152", features = ["derive"] }
ron = "0.8"
tokio = { version = "1.24.1", features = [
"sync",
"rt",
"tracing",
"macros",
"net",
"io-util",
] }
xdg = "2.4.1"
zbus = { version = "4.2.1", features = ["tokio", "p2p"] }
cosmic-notifications-util = { path = "./cosmic-notifications-util" }
cosmic-notifications-config = { path = "./cosmic-notifications-config" }
cosmic-panel-config = { git = "https://github.com/pop-os/cosmic-panel" }
sendfd = { version = "0.4", features = ["tokio"] }
bytemuck = "1.13.1"
log-panics = { version = "2", features = ["with-backtrace"] }
# remove after cosmic-panel is updated to use zbus v4
# [patch."https://github.com/pop-os/libcosmic"]
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//" }
# libcosmic = { git = "https://github.com/pop-os/libcosmic//" }
[features]
systemd = ["dep:tracing-journald"]
default = ["systemd"]
[workspace]
members = ["cosmic-notifications-util", "cosmic-notifications-config"]
[patch.'https://github.com/smithay/client-toolkit/']
smithay-client-toolkit = { version = "0.19.2" }
# smithay-client-toolkit = { git = "https://github.com/smithay/client-toolkit//", rev = "3bed072" }
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//" }