summaryrefslogtreecommitdiffstats
path: root/wgpu
diff options
context:
space:
mode:
authorLibravatar Bingus <shankern@protonmail.com>2023-02-20 10:04:36 -0800
committerLibravatar Bingus <shankern@protonmail.com>2023-02-20 10:04:36 -0800
commit9565b477ca66ef33bf3869361b838275e411ca75 (patch)
tree490f76407909300301cbfda0bda57676fd48882a /wgpu
parent3aaf5d8873b16302badb14dc5508329c943862fb (diff)
parent8c83d40e115a182136acfe013baa7a3f795ba3a5 (diff)
downloadiced-9565b477ca66ef33bf3869361b838275e411ca75.tar.gz
iced-9565b477ca66ef33bf3869361b838275e411ca75.tar.bz2
iced-9565b477ca66ef33bf3869361b838275e411ca75.zip
Merge remote-tracking branch 'origin/master' into feat/multi-window-support
Diffstat (limited to 'wgpu')
-rw-r--r--wgpu/Cargo.toml6
-rw-r--r--wgpu/README.md2
-rw-r--r--wgpu/src/lib.rs2
3 files changed, 5 insertions, 5 deletions
diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml
index 352802b8..f1e22cf6 100644
--- a/wgpu/Cargo.toml
+++ b/wgpu/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_wgpu"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A wgpu renderer for Iced"
@@ -42,11 +42,11 @@ version = "1.9"
features = ["derive"]
[dependencies.iced_native]
-version = "0.8"
+version = "0.9"
path = "../native"
[dependencies.iced_graphics]
-version = "0.6"
+version = "0.7"
path = "../graphics"
features = ["font-fallback", "font-icons"]
diff --git a/wgpu/README.md b/wgpu/README.md
index 8ef68c62..3e6af103 100644
--- a/wgpu/README.md
+++ b/wgpu/README.md
@@ -30,7 +30,7 @@ Currently, `iced_wgpu` supports the following primitives:
Add `iced_wgpu` as a dependency in your `Cargo.toml`:
```toml
-iced_wgpu = "0.8"
+iced_wgpu = "0.9"
```
__Iced moves fast and the `master` branch can contain breaking changes!__ If
diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs
index 5198276d..1a293681 100644
--- a/wgpu/src/lib.rs
+++ b/wgpu/src/lib.rs
@@ -16,7 +16,7 @@
//! - Meshes of triangles, useful to draw geometry freely.
//!
//! [Iced]: https://github.com/iced-rs/iced
-//! [`iced_native`]: https://github.com/iced-rs/iced/tree/0.7/native
+//! [`iced_native`]: https://github.com/iced-rs/iced/tree/0.8/native
//! [`wgpu`]: https://github.com/gfx-rs/wgpu-rs
//! [WebGPU API]: https://gpuweb.github.io/gpuweb/
//! [`wgpu_glyph`]: https://github.com/hecrj/wgpu_glyph