summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CHANGELOG.md6
-rw-r--r--examples/integration/src/main.rs1
-rw-r--r--wgpu/Cargo.toml6
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"