Private
Public Access
1
0

kptui: initial commit

This commit is contained in:
2025-12-14 17:50:37 -08:00
parent f4402292a1
commit 68bb94aa0b
7 changed files with 1569 additions and 5 deletions

26
core/kptui/Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "kptui"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.93"
crossterm = "0.28.1"
log = "0.4.22"
ratatui = "0.29.0"
time = { version = "0.3.37", features = ["formatting"] }
unicode-width = "0.2.0"
# D-Bus dependencies only on Linux
[target.'cfg(target_os = "linux")'.dependencies]
dbus = "0.9.7"
# D-Bus codegen only on Linux
[target.'cfg(target_os = "linux")'.build-dependencies]
dbus-codegen = "0.10.0"
# XPC (libxpc) interface only on macOS
[target.'cfg(target_os = "macos")'.dependencies]
block = "0.1.6"
xpc-connection = { git = "https://github.com/dfrankland/xpc-connection-rs.git", rev = "cd4fb3d", package = "xpc-connection" }
xpc-connection-sys = { git = "https://github.com/dfrankland/xpc-connection-rs.git", rev = "cd4fb3d", package = "xpc-connection-sys" }