cosmic-greeter/Cargo.toml

74 lines
2.2 KiB
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"
2024-02-06 15:03:07 -07:00
cosmic-bg-config.workspace = true
cosmic-config = { workspace = true, features = ["calloop", "macro"] }
cosmic-greeter-daemon = { path = "daemon" }
env_logger.workspace = true
2023-10-19 10:46:18 -06:00
freedesktop_entry_parser = "1.3.0"
2024-02-06 15:03:07 -07:00
libcosmic = { workspace = true, features = ["tokio", "wayland"] }
log.workspace = true
2023-10-19 10:46:18 -06:00
pam-client = "0.5.0"
2024-02-06 15:03:07 -07:00
pwd.workspace = true
ron.workspace = true
2023-10-19 10:46:18 -06:00
shlex = "1.2.0"
xdg = "2.5.2"
2024-02-06 15:03:07 -07:00
#TODO: reduce features
tokio = { workspace = true, features = ["full"] }
wayland-client = "0.31.2"
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", rev = "3644bc909984842f35adb1057ef6e0a277c1aa6a", optional = true }
2024-01-17 09:37:15 -07:00
# For logind integration using logind feature
logind-zbus = { version = "3.1.2", optional = true }
# Fix zbus compilation by manually adding nix with user feature
nix = { workspace = true, 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", rev = "3644bc909984842f35adb1057ef6e0a277c1aa6a", optional = true }
2024-01-17 09:37:15 -07:00
# Required for some features
2024-02-06 15:03:07 -07:00
zbus = { workspace = true, optional = true }
2023-10-09 10:59:07 -06:00
2023-10-02 14:38:00 -06:00
[dependencies.greetd_ipc]
2024-04-29 01:26:09 -05:00
version = "0.10.0"
2023-10-02 14:38:00 -06:00
features = ["sync-codec"]
2023-09-29 16:02:45 -06:00
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"]
zbus = ["dep:zbus", "nix"]
2024-02-06 15:03:07 -07:00
[workspace]
members = ["daemon"]
[workspace.dependencies]
env_logger = "0.10.0"
log = "0.4.20"
# Fix zbus compilation by manually adding nix with user feature
nix = { version = "0.26", features = ["user"] }
2024-02-06 15:03:07 -07:00
pwd = "1.4.0"
ron = "0.8"
serde = "1"
tokio = "1.33.0"
zbus = "3.14.1"
[workspace.dependencies.cosmic-bg-config]
git = "https://github.com/pop-os/cosmic-bg"
default-features = false
[workspace.dependencies.cosmic-config]
git = "https://github.com/pop-os/libcosmic"
default-features = false
2024-02-06 15:48:57 -07:00
[workspace.dependencies.cosmic-theme]
git = "https://github.com/pop-os/libcosmic"
default-features = false
2024-02-06 15:03:07 -07:00
[workspace.dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"
default-features = false