diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b6ba3d54..a5f7bea09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/Cargo.toml b/Cargo.toml index 181100b48..3418be8e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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", diff --git a/asio-sys/Cargo.toml b/asio-sys/Cargo.toml index a8391c9b4..460a6f1a1 100644 --- a/asio-sys/Cargo.toml +++ b/asio-sys/Cargo.toml @@ -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"