[package] name = "niri-tag" version = "0.1.1" edition = "2024" authors = [ "atagen " ] description = "Tag-based window management for the Niri compositor" readme = "README.md" license = "EUPL-1.2" keywords = ["niri", "ipc", "window management"] repository = "https://git.atagen.co/atagen/niri-tag" [lib] crate-type = [ "lib" ] path = "lib/main.rs" [[bin]] name = "niri-tag" path = "daemon/main.rs" [[bin]] name = "tagctl" path = "cli/main.rs" [dependencies] libsystemd = "0.7" niri-ipc = { path = "niri/niri-ipc" } 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"] } microxdg = "0.2.0" toml = "0.8.23"