diff options
author | 2023-09-03 00:44:31 +0200 | |
---|---|---|
committer | 2023-09-03 00:44:31 +0200 | |
commit | 52b3f69e35f267840be202b6cb4d08e0ca7a3b08 (patch) | |
tree | 5d6d501a427b7656691d3c85e4b2a21fe42b1558 | |
parent | c9bd48704dd9679c033dd0b8588e2744a3df44a0 (diff) | |
parent | d518e7d423f7069ed72d84e39a08e69ac07680fa (diff) | |
download | iced-52b3f69e35f267840be202b6cb4d08e0ca7a3b08.tar.gz iced-52b3f69e35f267840be202b6cb4d08e0ca7a3b08.tar.bz2 iced-52b3f69e35f267840be202b6cb4d08e0ca7a3b08.zip |
Merge pull request #2065 from iced-rs/update-wgpu
Update `wgpu` to `0.17`
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | examples/integration/src/main.rs | 1 | ||||
-rw-r--r-- | wgpu/Cargo.toml | 6 |
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e69b26eb..9d02ef4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Updated `wgpu` to `0.17`. [#2065](https://github.com/iced-rs/iced/pull/2065) + +Many thanks to... + +- Add your <name> here ## [0.10.0] - 2023-07-28 ### Added diff --git a/examples/integration/src/main.rs b/examples/integration/src/main.rs index 342d4c69..98b58f16 100644 --- a/examples/integration/src/main.rs +++ b/examples/integration/src/main.rs @@ -82,7 +82,6 @@ pub fn main() -> Result<(), Box<dyn std::error::Error>> { futures::futures::executor::block_on(async { let adapter = wgpu::util::initialize_adapter_from_env_or_default( &instance, - backend, Some(&surface), ) .await diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 69568099..b0f70220 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -14,8 +14,8 @@ svg = ["resvg"] web-colors = ["iced_graphics/web-colors"] [dependencies] -wgpu = "0.16" -glyphon = "0.3" +wgpu = "0.17" +glyphon = { git = "https://github.com/grovesNL/glyphon.git", rev = "20f0f8fa80e0d0df4c63634ce9176fa489546ca9" } raw-window-handle = "0.5" guillotiere = "0.6" futures = "0.3" @@ -25,7 +25,7 @@ rustc-hash = "1.1" log = "0.4" [target.'cfg(target_arch = "wasm32")'.dependencies] -wgpu = { version = "0.16", features = ["webgl"] } +wgpu = { version = "0.17", features = ["webgl"] } [dependencies.twox-hash] version = "1.6" |