Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,19 @@ rubato = { version = "=3.0.0", default-features = false, features = ["fft_resamp
# instead of relying on rubato/realfft's transitive copy.
rustfft = "=6.4.1"

# Windows process-tree lifetime: Job Objects keep wrappers and every descendant
# tied to the Rust host, including when it exits without running destructors.
# The child is created suspended and resumed only after assignment, closing the
# spawn/assign race. Target-scoped so Unix builds carry no Windows surface.
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_JobObjects",
"Win32_System_Threading",
] }

[dev-dependencies]
# The ADR-0025 corpus regression replays the spike WAVs (16-bit PCM) through
# the Rust estimator; hound is the de-facto WAV codec — reputable, tiny, and
Expand Down
Loading