31 lines
991 B
TOML
31 lines
991 B
TOML
[package]
|
|
name = "cosmic-idle"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
keyframe = "1.1.1"
|
|
wayland-client = "0.31.11"
|
|
wayland-protocols = { version = "0.32.9", features = ["client", "staging"] }
|
|
wayland-protocols-wlr = { version = "0.3.9", features = ["client"] }
|
|
cosmic-config = { path = "../libcosmic/cosmic-config", features = ["calloop"] }
|
|
cosmic-idle-config = { path = "./cosmic-idle-config" }
|
|
cosmic-settings-config = { path = "../cosmic-settings-daemon/config" }
|
|
calloop = { version = "0.14.3", features = ["executor"] }
|
|
calloop-wayland-source = "0.4.1"
|
|
log = "0.4.28"
|
|
env_logger = "0.11.8"
|
|
upower_dbus = { path = "../dbus-settings-bindings/upower" }
|
|
zbus = "5.12"
|
|
futures-lite = "2.6.1"
|
|
|
|
[workspace]
|
|
members = [
|
|
"cosmic-idle-config"
|
|
]
|
|
|
|
[patch.'https://github.com/pop-os/libcosmic']
|
|
cosmic-config = { path = "../libcosmic/cosmic-config" }
|
|
|
|
[patch.'https://github.com/pop-os/cosmic-settings-daemon']
|
|
cosmic-settings-config = { path = "../cosmic-settings-daemon/config" }
|