mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 06:21:23 +00:00
63 lines
1.9 KiB
TOML
63 lines
1.9 KiB
TOML
[package]
|
|
name = "pwsp"
|
|
version = "1.5.1"
|
|
edition = "2024"
|
|
authors = ["arabian"]
|
|
description = "PWSP lets you play audio files through your microphone. Has both CLI and GUI clients."
|
|
readme = "README.md"
|
|
homepage = "https://pwsp.arabianq.ru"
|
|
repository = "https://github.com/arabianq/pipewire-soundpad"
|
|
license = "MIT"
|
|
keywords = ["soundpad", "pipewire", "linux", "cli", "gui"]
|
|
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
async-trait = "0.1.89"
|
|
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
|
|
clap = { version = "4.5.58", default-features = false, features = ["std", "suggestions", "help", "usage", "error-context", "derive"] }
|
|
dirs = "6.0.0"
|
|
itertools = "0.14.0"
|
|
|
|
rodio = { version = "0.21.1", default-features = false, features = ["symphonia-all", "playback"] }
|
|
pipewire = "0.9.2"
|
|
rfd = { version = "0.17.2", default-features = false, features = ["xdg-portal"]}
|
|
opener = { version = "0.8.4", features = ["reveal"] }
|
|
|
|
egui = { version = "0.33.3", default-features = false, features = ["default_fonts", "rayon"] }
|
|
eframe = { version = "0.33.3", default-features = false, features = ["default_fonts", "glow", "x11", "wayland"] }
|
|
egui_material_icons = "0.5.0"
|
|
egui_dnd = "0.14.0"
|
|
|
|
[[bin]]
|
|
name = "pwsp-daemon"
|
|
path = "src/bin/daemon.rs"
|
|
|
|
[[bin]]
|
|
name = "pwsp-cli"
|
|
path = "src/bin/cli.rs"
|
|
|
|
[[bin]]
|
|
name = "pwsp-gui"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "z"
|
|
panic = "abort"
|
|
|
|
[package.metadata.deb]
|
|
assets = [
|
|
["target/release/pwsp-daemon", "usr/bin/", "755"],
|
|
["target/release/pwsp-cli", "usr/bin/", "755"],
|
|
["target/release/pwsp-gui", "usr/bin/", "755"],
|
|
["assets/pwsp-gui.desktop", "usr/share/applications/pwsp.desktop", "644"],
|
|
["assets/icon.png", "usr/share/icons/hicolor/256x256/apps/pwsp.png", "644"],
|
|
["assets/pwsp-daemon.service", "usr/lib/systemd/user/pwsp-daemon.service", "644"],
|
|
]
|