mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 06:21:23 +00:00
32 lines
813 B
TOML
32 lines
813 B
TOML
[package]
|
|
name = "pwsp"
|
|
version = "0.1.3"
|
|
edition = "2024"
|
|
authors = ["arabian"]
|
|
description = "A simple soundpad application written in Rust using egui for the GUI, pipewire for audio input/output, and rodio for audio decoding."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/arabianq/pipewire-soundpad"
|
|
repository = "https://github.com/arabianq/pipewire-soundpad"
|
|
license = "MIT"
|
|
keywords = ["soundpad", "pipewire"]
|
|
|
|
|
|
[dependencies]
|
|
egui = "0.31.1"
|
|
eframe = "0.31.1"
|
|
egui_material_icons = "0.3.0"
|
|
rfd = "0.15.3"
|
|
dirs = "6.0.0"
|
|
rodio = { version = "0.20.1", default-features = false, features = ["symphonia-all"] }
|
|
metadata = "0.1.10"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "z"
|
|
panic = "abort"
|
|
|