mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-08-24 02:30:28 +00:00
2b544d2e63
* chore(deps): bump the egui-stack group with 5 updates Bumps the egui-stack group with 5 updates: | Package | From | To | | --- | --- | --- | | [egui](https://github.com/emilk/egui) | `0.35.0` | `0.36.0` | | [eframe](https://github.com/emilk/egui) | `0.35.0` | `0.36.0` | | [egui_extras](https://github.com/emilk/egui) | `0.35.0` | `0.36.0` | | [egui_material_icons](https://github.com/lucasmerlin/hello_egui) | `0.7.0` | `0.8.0` | | [egui_dnd](https://github.com/lucasmerlin/hello_egui) | `0.16.0` | `0.17.0` | Updates `egui` from 0.35.0 to 0.36.0 - [Release notes](https://github.com/emilk/egui/releases) - [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.35.0...0.36.0) Updates `eframe` from 0.35.0 to 0.36.0 - [Release notes](https://github.com/emilk/egui/releases) - [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.35.0...0.36.0) Updates `egui_extras` from 0.35.0 to 0.36.0 - [Release notes](https://github.com/emilk/egui/releases) - [Changelog](https://github.com/emilk/egui/blob/main/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.35.0...0.36.0) Updates `egui_material_icons` from 0.7.0 to 0.8.0 - [Release notes](https://github.com/lucasmerlin/hello_egui/releases) - [Changelog](https://github.com/lucasmerlin/hello_egui/blob/main/CHANGELOG.md) - [Commits](https://github.com/lucasmerlin/hello_egui/compare/egui_material_icons-v0.7.0...egui_material_icons-v0.8.0) Updates `egui_dnd` from 0.16.0 to 0.17.0 - [Release notes](https://github.com/lucasmerlin/hello_egui/releases) - [Changelog](https://github.com/lucasmerlin/hello_egui/blob/main/CHANGELOG.md) - [Commits](https://github.com/lucasmerlin/hello_egui/compare/egui_dnd-v0.16.0...egui_dnd-v0.17.0) --- updated-dependencies: - dependency-name: egui dependency-version: 0.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: egui-stack - dependency-name: eframe dependency-version: 0.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: egui-stack - dependency-name: egui_extras dependency-version: 0.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: egui-stack - dependency-name: egui_material_icons dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: egui-stack - dependency-name: egui_dnd dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: egui-stack ... Signed-off-by: dependabot[bot] <support@github.com> * chore(flatpak): automatically update cargo-sources.json --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
91 lines
2.1 KiB
TOML
91 lines
2.1 KiB
TOML
[workspace]
|
|
members = [
|
|
"pwsp-lib",
|
|
"pwsp-daemon",
|
|
"pwsp-cli",
|
|
"pwsp-gui"
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "1.16.0"
|
|
edition = "2024"
|
|
authors = ["arabian"]
|
|
homepage = "https://pwsp.arabianq.ru"
|
|
repository = "https://github.com/arabianq/pipewire-soundpad"
|
|
license = "MIT"
|
|
description = "PWSP lets you play audio files through your microphone. Has both CLI and GUI clients."
|
|
keywords = ["soundpad", "pipewire", "linux", "cli", "gui"]
|
|
|
|
[workspace.dependencies]
|
|
pwsp-lib = { path = "pwsp-lib" }
|
|
pwsp-daemon = { path = "pwsp-daemon" }
|
|
pwsp-cli = { path = "pwsp-cli" }
|
|
pwsp-gui = { path = "pwsp-gui" }
|
|
|
|
tokio = { version = "1.52.3", features = ["full"] }
|
|
async-trait = "0.1.89"
|
|
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
|
|
clap = { version = "4.6.1", default-features = false, features = [
|
|
"std",
|
|
"suggestions",
|
|
"help",
|
|
"usage",
|
|
"error-context",
|
|
"derive",
|
|
] }
|
|
|
|
dirs = "6.0.0"
|
|
itertools = "0.15.0"
|
|
evdev = { version = "0.13.2", features = ["tokio"] }
|
|
rfd = { version = "0.17.2", default-features = false, features = [
|
|
"xdg-portal",
|
|
] }
|
|
opener = { version = "0.8.4", features = ["reveal"] }
|
|
system-fonts = "0.1.1"
|
|
anyhow = "1.0.102"
|
|
rustix = { version = "1.1.4", features = ["process"] }
|
|
|
|
rust-i18n = "4.0.0"
|
|
sys-locale = "0.3.2"
|
|
|
|
rodio = { git = "https://github.com/RustAudio/rodio.git", rev = "c5f1e94290922fe4ee963ce6f85754ea6ba36243", default-features = false, features = [
|
|
"symphonia-all",
|
|
"symphonia-libopus",
|
|
"playback",
|
|
] }
|
|
pipewire = "0.10.0"
|
|
|
|
egui = { version = "0.36.0", default-features = false, features = [
|
|
"default_fonts",
|
|
"rayon",
|
|
] }
|
|
eframe = { version = "0.36.0", default-features = false, features = [
|
|
"default_fonts",
|
|
"glow",
|
|
"x11",
|
|
"wayland",
|
|
] }
|
|
egui_extras = "0.36.0"
|
|
egui_material_icons = "0.8.0"
|
|
egui_dnd = "0.17.0"
|
|
|
|
reqwest = { version = "0.13.4", default-features = false, features = ["native-tls"] }
|
|
percent-encoding = "2.3.2"
|
|
|
|
[profile.dev]
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
debug = false
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "z"
|
|
panic = "abort"
|