From 822d9da643264068d446e19326dbd47a325b01ad Mon Sep 17 00:00:00 2001 From: est31 Date: Wed, 22 Jul 2020 23:38:26 +0200 Subject: [PATCH 1/3] Update repo url of asio-sys --- asio-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asio-sys/Cargo.toml b/asio-sys/Cargo.toml index b012e88..abf8fce 100644 --- a/asio-sys/Cargo.toml +++ b/asio-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "asio-sys" version = "0.1.0" authors = ["Tom Gowan "] description = "Low-level interface and binding generation for the steinberg ASIO SDK." -repository = "https://github.com/tomaka/cpal" +repository = "https://github.com/RustAudio/cpal/" documentation = "https://docs.rs/asio-sys" license = "Apache-2.0" keywords = ["audio", "sound", "asio", "steinberg"] From 0b185514b8dbb919cfb7a5c105acefa01a28f7da Mon Sep 17 00:00:00 2001 From: est31 Date: Wed, 22 Jul 2020 23:41:30 +0200 Subject: [PATCH 2/3] Release asio-sys 0.2.0 --- asio-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asio-sys/Cargo.toml b/asio-sys/Cargo.toml index abf8fce..47b9964 100644 --- a/asio-sys/Cargo.toml +++ b/asio-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asio-sys" -version = "0.1.0" +version = "0.2.0" authors = ["Tom Gowan "] description = "Low-level interface and binding generation for the steinberg ASIO SDK." repository = "https://github.com/RustAudio/cpal/" From 42ee11affca2b3e0e4f23c65d21eb3ecbe708348 Mon Sep 17 00:00:00 2001 From: est31 Date: Thu, 23 Jul 2020 00:55:40 +0200 Subject: [PATCH 3/3] Depend on version 0.2 of asio-sys --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 00a93f3..d77e340 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ ringbuf = "0.1.6" [target.'cfg(target_os = "windows")'.dependencies] winapi = { version = "0.3", features = ["audiosessiontypes", "audioclient", "coml2api", "combaseapi", "debug", "devpkey", "handleapi", "ksmedia", "mmdeviceapi", "objbase", "profileapi", "std", "synchapi", "winbase", "winuser"] } -asio-sys = { version = "0.1", path = "asio-sys", optional = true } +asio-sys = { version = "0.2", path = "asio-sys", optional = true } num-traits = { version = "0.2.6", optional = true } parking_lot = "0.9" lazy_static = "1.3"