2022-06-22 12:22:30 -04:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-session"
|
|
|
|
|
description = "The session manager for the COSMIC desktop environment"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
license = "GPL-3.0-only"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["Lucy <lucy@system76.com>"]
|
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-22 14:09:59 -04:00
|
|
|
async-signals = "0.4"
|
|
|
|
|
color-eyre = "0.6"
|
2022-06-27 14:17:31 -04:00
|
|
|
futures-util = "0.3"
|
2023-11-10 12:24:12 -05:00
|
|
|
launch-pad = { git = "https://github.com/pop-os/launch-pad" }
|
2024-01-10 10:47:44 -05:00
|
|
|
itertools = "0.12"
|
2024-06-21 14:45:46 -04:00
|
|
|
#launch-pad = { path = "../../../launch-pad" }
|
2022-06-24 11:43:48 -04:00
|
|
|
libc = "0.2"
|
2023-01-13 11:55:55 -08:00
|
|
|
log-panics = { version = "2", features = ["with-backtrace"] }
|
2023-11-09 09:50:58 -05:00
|
|
|
rustix = "0.38"
|
2022-07-22 11:48:03 -04:00
|
|
|
scopeguard = "1"
|
2022-07-07 16:45:17 -04:00
|
|
|
sendfd = { version = "0.4", features = ["tokio"] }
|
2022-06-27 14:17:31 -04:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2023-06-29 16:39:24 -04:00
|
|
|
tokio = { version = "1", features = [
|
|
|
|
|
"fs",
|
|
|
|
|
"io-util",
|
|
|
|
|
"io-std",
|
|
|
|
|
"macros",
|
|
|
|
|
"net",
|
|
|
|
|
"parking_lot",
|
|
|
|
|
"process",
|
|
|
|
|
"rt",
|
|
|
|
|
"signal",
|
|
|
|
|
"sync",
|
|
|
|
|
"time",
|
|
|
|
|
] }
|
2024-06-21 14:45:46 -04:00
|
|
|
zbus_systemd = { version = "0.25600.0", optional = true, features = [
|
|
|
|
|
"systemd1",
|
|
|
|
|
] }
|
2022-06-22 14:09:59 -04:00
|
|
|
tokio-util = "0.7"
|
2022-06-22 12:22:30 -04:00
|
|
|
tracing = "0.1"
|
2022-07-22 11:48:03 -04:00
|
|
|
tracing-journald = "0.3"
|
2022-06-22 12:22:30 -04:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2024-06-20 14:12:58 -04:00
|
|
|
zbus = { version = "4.3.0", default-features = false, features = ["tokio"] }
|
|
|
|
|
cosmic-notifications-util = { git = "https://github.com/pop-os/cosmic-notifications" }
|
2024-06-21 14:45:46 -04:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
systemd = ["dep:zbus_systemd"]
|
|
|
|
|
default = ["systemd"]
|