2023-09-29 09:24:35 -06:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-greeter"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-19 10:46:18 -06:00
|
|
|
chrono = "0.4.31"
|
|
|
|
|
env_logger = "0.10.0"
|
|
|
|
|
freedesktop_entry_parser = "1.3.0"
|
|
|
|
|
log = "0.4.20"
|
|
|
|
|
pam-client = "0.5.0"
|
|
|
|
|
pwd = "1.4.0"
|
|
|
|
|
shlex = "1.2.0"
|
|
|
|
|
wayland-client = "0.31.1"
|
2024-01-17 09:37:15 -07:00
|
|
|
# For network status using networkmanager feature
|
|
|
|
|
cosmic-dbus-networkmanager = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
|
|
|
|
# For logind integration using logind feature
|
|
|
|
|
logind-zbus = { version = "3.1.2", optional = true }
|
2024-01-17 12:37:22 -07:00
|
|
|
# For power status with upower feature
|
|
|
|
|
upower_dbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
2024-01-17 09:37:15 -07:00
|
|
|
# Required for some features
|
2023-11-29 08:02:14 -07:00
|
|
|
zbus = { version = "3.14.1", optional = true }
|
2023-10-02 14:38:00 -06:00
|
|
|
|
2023-10-09 10:59:07 -06:00
|
|
|
[dependencies.cosmic-bg-config]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-bg"
|
2023-10-12 09:18:04 -06:00
|
|
|
|
|
|
|
|
[dependencies.cosmic-config]
|
|
|
|
|
git = "https://github.com/pop-os/libcosmic"
|
|
|
|
|
features = ["calloop", "macro"]
|
2023-10-09 10:59:07 -06:00
|
|
|
|
2023-10-02 14:38:00 -06:00
|
|
|
[dependencies.greetd_ipc]
|
2023-10-19 10:46:18 -06:00
|
|
|
version = "0.9.0"
|
2023-10-02 14:38:00 -06:00
|
|
|
features = ["sync-codec"]
|
2023-09-29 16:02:45 -06:00
|
|
|
|
|
|
|
|
[dependencies.libcosmic]
|
|
|
|
|
git = "https://github.com/pop-os/libcosmic"
|
2023-10-06 10:44:05 -06:00
|
|
|
features = ["tokio", "wayland"]
|
2023-09-29 16:02:45 -06:00
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
2023-10-19 10:46:18 -06:00
|
|
|
version = "1.33.0"
|
2023-09-29 16:02:45 -06:00
|
|
|
features = ["full"]
|
2023-11-29 08:02:14 -07:00
|
|
|
|
|
|
|
|
[features]
|
2024-01-17 12:37:22 -07:00
|
|
|
default = ["logind", "networkmanager", "upower"]
|
2023-11-29 08:02:14 -07:00
|
|
|
logind = ["logind-zbus", "zbus"]
|
2024-01-17 09:37:15 -07:00
|
|
|
networkmanager = ["cosmic-dbus-networkmanager", "zbus"]
|
2024-01-17 12:37:22 -07:00
|
|
|
upower = ["upower_dbus", "zbus"]
|