Skip to content
Merged
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
- CoreAudio: Change default audio device detection to be lazy when building a stream, instead of during device enumeration.
- CoreAudio: Add `i8`, `i32` and `I24` sample format support (24-bit samples stored in 4 bytes).
- CoreAudio: Add support for loopback recording (recording system audio output) on macOS > 14.6.
- CoreAudio: Update `mach2` to 0.5.
- CoreAudio: Update `mach2` to 0.6.
- CoreAudio: Configure device buffer to ensure predictable callback buffer sizes.
- CoreAudio: Fix timestamp accuracy.
- CoreAudio: Make `Stream` implement `Send`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ audio_thread_priority = { version = "0.34", optional = true }
jack = { version = "0.13", optional = true }

[target.'cfg(target_vendor = "apple")'.dependencies]
mach2 = "0.5"
mach2 = "0.6"
coreaudio-rs = { version = "0.13", default-features = false, features = [
"core_audio",
"audio_toolbox",
Expand Down
6 changes: 3 additions & 3 deletions asio-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ keywords = ["audio", "sound", "asio", "steinberg"]
build = "build.rs"

[build-dependencies]
bindgen = "0.69"
bindgen = "0.72"
walkdir = "2"
cc = "1.0.83"
parse_cfg = "4.1.1"
cc = "1.2"
parse_cfg = "4.1"

[dependencies]
num-derive = "0.4"
Expand Down