32 lines
570 B
TOML
32 lines
570 B
TOML
[package]
|
|
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]
|
|
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"
|
|
|