52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "sway-de-utils"
|
|
version = "0.1.9"
|
|
authors = ["Penelope Gwen <support@pogmom.me>"]
|
|
edition = "2024"
|
|
license-file = "LICENSE.md"
|
|
description = "A collection of utility commands which help manage a multiple-workspace setup in Sway"
|
|
build="build.rs"
|
|
|
|
[[bin]]
|
|
name = "sdu"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.45", features = ["derive"] }
|
|
confy = "1.0.0"
|
|
dialog = "0.3.0"
|
|
env_logger = "0.11.8"
|
|
freedesktop-icons = "0.4.0"
|
|
hex = "0.4.3"
|
|
image = "0.25.8"
|
|
log = "0.4.28"
|
|
miette = "7.6.0"
|
|
serde = "1.0.219"
|
|
serde_json = "1.0.142"
|
|
sha2 = "0.10.9"
|
|
shellexpand = "3.1.1"
|
|
swayipc = "4.0.0"
|
|
systemctl = "0.5.0"
|
|
tokio = "1.47.1"
|
|
walkdir = "2.5.0"
|
|
watchexec = "8.0.1"
|
|
watchexec-events = "6.0.0"
|
|
xdg = "3.0.0"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.5.45", features = ["derive", "cargo"] }
|
|
clap_complete = "4.5.65"
|
|
clap_mangen = "0.2.31"
|
|
flate2 = "1.1.8"
|
|
|
|
[package.metadata.deb]
|
|
#conflicts = ["sway-profiles"]
|
|
changelog = "debian/changelog"
|
|
assets = [
|
|
"$auto",
|
|
["target/release/build/sway-de-utils-*/out/sdu.1.gz", "/usr/share/man/man1/", "644"],
|
|
["target/release/build/sway-de-utils-*/out/sdu.bash", "/usr/share/bash-completion/completions/", "644"],
|
|
["target/release/build/sway-de-utils-*/out/_sdu", "/usr/share/zsh/vendor_completions/", "644"],
|
|
["target/release/build/sway-de-utils-*/out/sdu.fish", "/usr/share/fish/vendor_completions.d/", "644"],
|
|
["target/release/build/sway-de-utils-*/out/sdu.elv", "/usr/share/elvish/lib/", "644"]
|
|
]
|