diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef3d12c..32f66702 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ - On macOS, fix `CursorMoved` event reporting the cursor position using logical coordinates. - On macOS, fix issue where unbundled applications would sometimes open without being focused. - On macOS, fix `run_return` does not return unless it receives a message. +- On macOS, updated core-* dependencies and cocoa - On Windows, fix bug where `RedrawRequested` would only get emitted every other iteration of the event loop. - On X11, fix deadlock on window state when handling certain window events. - `WindowBuilder` now implements `Default`. diff --git a/Cargo.toml b/Cargo.toml index cb466f9f..218fb296 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,14 +42,14 @@ ndk-glue = "0.1.0" objc = "0.2.3" [target.'cfg(target_os = "macos")'.dependencies] -cocoa = "0.19.1" -core-foundation = "0.6" -core-graphics = "0.17.3" +cocoa = "0.20" +core-foundation = "0.7" +core-graphics = "0.19" dispatch = "0.2.0" objc = "0.2.6" [target.'cfg(target_os = "macos")'.dependencies.core-video-sys] -version = "0.1.3" +version = "0.1.4" default_features = false features = ["display_link"]