cosmic-greeter/Cargo.toml

40 lines
835 B
TOML
Raw Normal View History

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"
2023-11-29 08:02:14 -07:00
logind-zbus = { version = "3.1.2", optional = true }
2023-10-19 10:46:18 -06:00
pam-client = "0.5.0"
pwd = "1.4.0"
shlex = "1.2.0"
wayland-client = "0.31.1"
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"
[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]
default = ["logind"]
logind = ["logind-zbus", "zbus"]