diff --git a/CHANGELOG.md b/CHANGELOG.md index e44d3bf1ff..6a18a25637 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +- Updated winit dependency to 0.25.0. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.25.0) for more info. + # Version 0.26.0 (2020-12-10) - Updated winit dependency to 0.24.0. See [winit's CHANGELOG](https://github.com/rust-windowing/winit/releases/tag/v0.24.0) for more info. diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml index 3bf29a6071..d6c55ae976 100644 --- a/glutin/Cargo.toml +++ b/glutin/Cargo.toml @@ -21,7 +21,7 @@ default = ["x11", "wayland"] [dependencies] lazy_static = "1.3" -winit = { version = "0.24.0", default-features = false } +winit = { version = "0.25", default-features = false } [target.'cfg(target_os = "android")'.dependencies] android_glue = "0.2" @@ -37,7 +37,7 @@ glutin_gles2_sys = { version = "0.1.4", path = "../glutin_gles2_sys" } [target.'cfg(target_os = "macos")'.dependencies] cgl = "0.3" -cocoa = "0.23" +cocoa = "0.24" core-foundation = "0.9" [target.'cfg(target_os = "windows")'.dependencies.winapi] diff --git a/glutin_examples/Cargo.toml b/glutin_examples/Cargo.toml index 30aff392bc..cd58883000 100644 --- a/glutin_examples/Cargo.toml +++ b/glutin_examples/Cargo.toml @@ -12,7 +12,6 @@ publish = false [dependencies] glutin = { path = "../glutin" } -winit = "0.24.0" takeable-option = "0.4" image = "0.21"