-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1.31 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (30 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "peakmuncher"
version = "0.1.0"
edition = "2021"
description = "Standalone waveshaping clipper / limiter with zone-based automation"
license = "GPL-3.0"
[dependencies]
# GUI
iced = { version = "0.13", features = ["canvas", "tokio", "advanced", "svg"] }
# Audio file I/O
hound = "3.5" # WAV
claxon = "0.4" # FLAC decode (pure Rust)
flacenc = "0.4" # FLAC encode (pure Rust, no C deps)
minimp3 = "0.5" # MP3 decode
mp3lame-encoder = "0.2" # MP3 encode (libmp3lame bindings)
# Audio playback
cpal = "0.16" # cross-platform audio output
# Utility
rfd = "0.15" # native file dialogs (KDE-friendly via xdg-portal)
anyhow = "1"
tokio = { version = "1", features = ["rt", "rt-multi-thread"] } # for spawn_blocking
rayon = "1" # parallel DSP and envelope
rustfft = "6" # FFT for spectrum + spectrogram
ebur128 = "0.1" # EBU R128 / ITU-R BS.1770 loudness measurement
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "5" # cross-platform config dir lookup
[profile.release]
opt-level = 3
lto = "thin"