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-09 14:34:29 -05:00
|
|
|
launch-pad = { git = "https://github.com/pop-os/launch-pad", branch = "fix-close-fds-after-start" }
|
|
|
|
|
# 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",
|
|
|
|
|
] }
|
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"] }
|
2023-06-30 18:45:31 -04:00
|
|
|
zbus = { version = "3", default-features = false, features = ["tokio"] }
|
2023-06-27 15:26:52 -04:00
|
|
|
cosmic-notifications-util = { git = "https://github.com/pop-os/cosmic-notifications"}
|