feat: full poc

This commit is contained in:
atagen 2025-06-19 17:35:38 +10:00
parent b76036038e
commit a8847b93cf
14 changed files with 630 additions and 323 deletions

View file

@ -3,14 +3,27 @@ name = "niri-tag"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = [ "lib" ]
path = "lib/main.rs"
[[bin]]
name = "niri-tag"
path = "daemon/main.rs"
[[bin]]
name = "tagctl"
path = "cli/main.rs"
[dependencies]
anyhow = "1.0.98"
libsystemd = "0.7.2"
serde_json = "1.0.140"
thiserror = "2.0.12"
tracing-subscriber = "0.3.19"
libsystemd = "0.7"
niri-ipc = { path = "niri/niri-ipc" }
smol = "2.0.2"
tracing = "0.1.41"
nix = { version = "0.30.1", features = ["process", "user"] }
serde = { version = "1.0.219", features = ["derive"] }
nix = { version = "0.30", features = ["process", "user"] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
serde_json = "1.0"
smol = "2.0"
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }