battery: Add gpu indicator and process list

This commit is contained in:
Victoria Brekenfeld 2024-01-24 21:19:18 +01:00 committed by Victoria Brekenfeld
parent 17073628af
commit 8472f1f358
8 changed files with 798 additions and 131 deletions

23
Cargo.lock generated
View file

@ -855,6 +855,7 @@ dependencies = [
"tracing",
"tracing-log",
"tracing-subscriber",
"udev",
"zbus",
]
@ -3218,6 +3219,16 @@ dependencies = [
"redox_syscall 0.4.1",
]
[[package]]
name = "libudev-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324"
dependencies = [
"libc",
"pkg-config",
]
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
@ -5327,6 +5338,18 @@ version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "udev"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50051c6e22be28ee6f217d50014f3bc29e81c20dc66ff7ca0d5c5226e1dcc5a1"
dependencies = [
"io-lifetimes 1.0.11",
"libc",
"libudev-sys",
"pkg-config",
]
[[package]]
name = "uds_windows"
version = "1.1.0"