diff options
Diffstat (limited to 'gfx/wgpu_bindings/Cargo.toml')
-rw-r--r-- | gfx/wgpu_bindings/Cargo.toml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gfx/wgpu_bindings/Cargo.toml b/gfx/wgpu_bindings/Cargo.toml index b24d09a955..21b4b8c7f7 100644 --- a/gfx/wgpu_bindings/Cargo.toml +++ b/gfx/wgpu_bindings/Cargo.toml @@ -17,7 +17,7 @@ default = [] [dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" # TODO: remove the replay feature on the next update containing https://github.com/gfx-rs/wgpu/pull/5182 features = ["serde", "replay", "trace", "strict_asserts", "wgsl", "api_log_info"] @@ -26,37 +26,37 @@ features = ["serde", "replay", "trace", "strict_asserts", "wgsl", "api_log_info" [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" features = ["metal"] # We want the wgpu-core Direct3D backends on Windows. [target.'cfg(windows)'.dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" features = ["dx12"] # We want the wgpu-core Vulkan backend on Linux and Windows. [target.'cfg(any(windows, all(unix, not(any(target_os = "macos", target_os = "ios")))))'.dependencies.wgc] package = "wgpu-core" git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" features = ["vulkan"] [dependencies.wgt] package = "wgpu-types" git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" [dependencies.wgh] package = "wgpu-hal" git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" features = ["windows_rs"] [target.'cfg(windows)'.dependencies.d3d12] git = "https://github.com/gfx-rs/wgpu" -rev = "07e59eb6fc7de3f682f1c401b9cf9f0da9ee4b4a" +rev = "6040820099bc72b827a6a5f53d66dda3e301f944" [target.'cfg(windows)'.dependencies] winapi = "0.3" @@ -68,3 +68,4 @@ parking_lot = "0.12" serde = "1" nsstring = { path = "../../xpcom/rust/nsstring" } static_prefs = { path = "../../modules/libpref/init/static_prefs" } +arrayvec = "0.7" |