diff options
author | 2021-04-12 22:06:16 -0700 | |
---|---|---|
committer | 2021-04-12 22:06:16 -0700 | |
commit | c719091c3d7b5f71899530437fde9b512bc2b0f3 (patch) | |
tree | 9426b5f2d6b74e7f1254ccd0bb64af246368fad9 /Cargo.toml | |
parent | 9a2c78c4059d2be37d10adda397fb6e64f38ac02 (diff) | |
download | iced-c719091c3d7b5f71899530437fde9b512bc2b0f3.tar.gz iced-c719091c3d7b5f71899530437fde9b512bc2b0f3.tar.bz2 iced-c719091c3d7b5f71899530437fde9b512bc2b0f3.zip |
Add staging belt fix
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -11,6 +11,18 @@ readme = "README.md" keywords = ["gui", "ui", "graphics", "interface", "widgets"] categories = ["gui"] +[patch."https://github.com/gfx-rs/wgpu"] +wgpu-types = { git = "https://github.com/Dispersia/wgpu" } +wgpu-core = { git = "https://github.com/Dispersia/wgpu" } + +[patch."https://github.com/gfx-rs/wgpu-rs"] +wgpu = { git = "https://github.com/Dispersia/wgpu-rs" } + +[patch.crates-io] +wgpu-types = { git = "https://github.com/Dispersia/wgpu" } +wgpu-core = { git = "https://github.com/Dispersia/wgpu" } +wgpu = { git = "https://github.com/Dispersia/wgpu-rs" } + [features] default = ["wgpu", "default_system_font"] # Enables the `iced_wgpu` renderer |