forked from pop-os/cosmic-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (66 loc) · 2.31 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
69
70
71
72
[package]
name = "cosmic-notifications"
version = "0.1.0"
authors = ["Ashley Wulber <[email protected]>"]
edition = "2024"
rust-version = "1.85.0"
[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"
i18n-embed = { version = "0.15.3", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.9.3"
color-backtrace = "0.7.0"
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" }
cosmic-time = { git = "https://github.com/pop-os/cosmic-time", default-features = false, features = [
"once_cell",
] }
rust-embed = "8.6.0"
rustix = "1.0.3"
serde = { version = "1.0.219", features = ["derive"] }
ron = "0.9.0"
tokio = { version = "1.44.1", features = [
"sync",
"rt",
"tracing",
"macros",
"net",
"io-util",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.19", features = ["std", "env-filter"] }
tracing-journald = { version = "0.3.1", optional = true }
zbus = { version = "4.4.0", features = ["tokio", "p2p"] }
# 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"]
[profile.release]
opt-level = "s"
lto = "thin"
[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//" }
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# libcosmic = { git = "https://github.com/pop-os/libcosmic//", branch = "notifications-card" }
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//", branch = "notifications-card" }