wgpu/wgpu-hal/Cargo.toml

182 lines
4.9 KiB
TOML
Raw Normal View History

2021-06-04 05:19:36 +00:00
[package]
name = "wgpu-hal"
2024-01-17 19:42:11 +00:00
version = "0.19.0"
authors = ["gfx-rs developers"]
2022-12-15 20:46:28 +00:00
edition = "2021"
2021-06-04 05:19:36 +00:00
description = "WebGPU hardware abstraction layer"
2022-12-15 20:46:28 +00:00
homepage = "https://wgpu.rs/"
repository = "https://github.com/gfx-rs/wgpu"
keywords = ["graphics"]
license = "MIT OR Apache-2.0"
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for
# them to have less restrictive MSRVs individually than the workspace as a
# whole, if their code permits. See `../README.md` for details.
rust-version = "1.70"
2021-06-04 05:19:36 +00:00
[package.metadata.docs.rs]
# Ideally we would enable all the features.
#
2023-12-06 20:12:46 +00:00
# However, the metal features fail to be documented because the docs.rs runner cross-compiling under
# x86_64-unknown-linux-gnu and metal-rs cannot compile in that environment at the moment. The same applies
2023-12-06 20:12:46 +00:00
# for the dx12 feature.
features = ["vulkan", "gles", "renderdoc"]
rustdoc-args = ["--cfg", "docsrs"]
2023-02-09 20:38:40 +00:00
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"wasm32-unknown-unknown",
]
2021-06-04 05:19:36 +00:00
[lib]
[features]
2023-06-28 10:30:28 +00:00
default = ["link"]
metal = ["naga/msl-out", "block"]
2023-10-25 17:53:22 +00:00
vulkan = [
"naga/spv-out",
"ash",
"gpu-alloc",
"gpu-descriptor",
"libloading",
"smallvec",
]
gles = ["naga/glsl-out", "glow", "glutin_wgl_sys", "khronos-egl", "libloading"]
2023-10-25 17:53:22 +00:00
dx12 = [
"naga/hlsl-out",
"d3d12",
"bit-set",
"libloading",
"range-alloc",
"winapi/std",
"winapi/winbase",
"winapi/d3d12",
"winapi/d3d12shader",
"winapi/d3d12sdklayers",
"winapi/dxgi1_6",
]
# TODO: This is a separate feature until Mozilla okays windows-rs, see https://github.com/gfx-rs/wgpu/issues/3207 for the tracking issue.
windows_rs = ["gpu-allocator"]
dxc_shader_compiler = ["hassle-rs"]
2021-07-14 16:40:01 +00:00
renderdoc = ["libloading", "renderdoc-sys"]
fragile-send-sync-non-atomic-wasm = ["wgt/fragile-send-sync-non-atomic-wasm"]
2023-06-28 10:30:28 +00:00
link = ["metal/link"]
2021-06-04 05:19:36 +00:00
[[example]]
name = "halmark"
[[example]]
name = "raw-gles"
required-features = ["gles"]
2021-06-04 05:19:36 +00:00
[dependencies]
bitflags = "2"
2022-12-15 20:46:28 +00:00
parking_lot = ">=0.11,<0.13"
profiling = { version = "1", default-features = false }
raw-window-handle = "0.6"
2022-12-15 20:46:28 +00:00
thiserror = "1"
once_cell = "1.19.0"
2021-06-05 05:44:21 +00:00
2021-06-11 06:09:03 +00:00
# backends common
2022-12-15 20:46:28 +00:00
arrayvec = "0.7"
rustc-hash = "1.1"
2022-12-15 20:46:28 +00:00
log = "0.4"
2021-07-14 16:40:01 +00:00
# backend: Gles
2024-01-17 20:23:50 +00:00
glow = { version = "0.13.1", optional = true }
2021-07-14 16:40:01 +00:00
[dependencies.wgt]
2022-12-15 20:46:28 +00:00
package = "wgpu-types"
path = "../wgpu-types"
2024-01-17 19:42:11 +00:00
version = "0.19.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# backend: Vulkan
ash = { version = "0.37.3", optional = true }
gpu-alloc = { version = "0.6", optional = true }
gpu-descriptor = { version = "0.2", optional = true }
smallvec = { version = "1", optional = true, features = ["union"] }
2023-10-05 18:01:32 +00:00
khronos-egl = { version = "6", features = ["dynamic"], optional = true }
libloading = { version = ">=0.7, <0.9", optional = true }
renderdoc-sys = { version = "1.0.0", optional = true }
2021-06-08 15:46:53 +00:00
2022-01-25 10:35:45 +00:00
[target.'cfg(target_os = "emscripten")'.dependencies]
2023-10-05 18:01:32 +00:00
khronos-egl = { version = "6", features = ["static", "no-pkg-config"] }
2022-01-25 10:35:45 +00:00
#Note: it's unused by emscripten, but we keep it to have single code base in egl.rs
libloading = { version = ">=0.7, <0.9", optional = true }
2022-01-25 10:35:45 +00:00
[target.'cfg(windows)'.dependencies]
# backend: Dx12
bit-set = { version = "0.5", optional = true }
range-alloc = { version = "0.1", optional = true }
gpu-allocator = { version = "0.25", default_features = false, features = [
2023-10-25 17:53:22 +00:00
"d3d12",
"public-winapi",
], optional = true }
hassle-rs = { version = "0.11", optional = true }
# backend: Gles
glutin_wgl_sys = { version = "0.5", optional = true }
2023-10-25 17:53:22 +00:00
winapi = { version = "0.3", features = [
"profileapi",
"libloaderapi",
"windef",
"winuser",
"dcomp",
] }
2024-01-17 19:42:11 +00:00
d3d12 = { path = "../d3d12/", version = "0.19.0", optional = true, features = [
"libloading",
] }
[target.'cfg(any(target_os="macos", target_os="ios"))'.dependencies]
# backend: Metal
block = { version = "0.1", optional = true }
2023-10-25 18:04:01 +00:00
metal = "0.27.0"
2022-12-15 20:46:28 +00:00
objc = "0.2.5"
core-graphics-types = "0.1"
2022-01-25 10:35:45 +00:00
[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]
wasm-bindgen = "0.2.87"
web-sys = { version = "0.3.67", features = [
2023-10-25 17:53:22 +00:00
"Window",
"HtmlCanvasElement",
"WebGl2RenderingContext",
"OffscreenCanvas",
] }
js-sys = "0.3.67"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
Acquire texture: `Option<std::time::Duration>` timeouts (#2724) * surface.acquire_texture: pass Option<Duration> for timeout A std::time::Duration allows for timeouts to be specified more clearly in Rust using whatever units are convenient for the caller, and an Option also makes it clearer in case no timeout is wanted, as opposed to passing a bitwise !0 as special timeout value. Notably there was an impedance mismatch with the Vulkan backend that takes a 64bit timeout in nanoseconds and uses u64::MAX to indicate no timeout and the backend was not mapping a given u32::MAX into a u64::MAX * surface.acquire_texture: ignore timeout for Android < 11 Prior to Android 11 then Android's vkAcquireNextImageKHR implementation was non-conformant and didn't support timeouts and additionally would log a verbose warning if a timeout was requested. For reference this version of AcquireNextImageKHR doesn't support timeouts: https://android.googlesource.com/platform/frameworks/native/+/refs/tags/android-mainline-10.0.0_r13/vulkan/libvulkan/swapchain.cpp#1426 and this version does: https://android.googlesource.com/platform/frameworks/native/+/refs/tags/android-mainline-11.0.0_r45/vulkan/libvulkan/swapchain.cpp#1438 (i.e. timeout support was added in Android 11) This patch adds a dependency on the `android-properties` crate that provides a simple wrapper for the `__system_property_set` syscall so that the platform version can be read via the `ro.build.version.sdk` property and then for versions < 30 (corresponds to Android 11) any timeout given to `acquire_texture` will be ignored (and `u64::MAX` will be passed to Vulkan)
2022-06-04 16:05:40 +00:00
[target.'cfg(target_os = "android")'.dependencies]
2022-12-15 20:46:28 +00:00
android_system_properties = "0.1.1"
Acquire texture: `Option<std::time::Duration>` timeouts (#2724) * surface.acquire_texture: pass Option<Duration> for timeout A std::time::Duration allows for timeouts to be specified more clearly in Rust using whatever units are convenient for the caller, and an Option also makes it clearer in case no timeout is wanted, as opposed to passing a bitwise !0 as special timeout value. Notably there was an impedance mismatch with the Vulkan backend that takes a 64bit timeout in nanoseconds and uses u64::MAX to indicate no timeout and the backend was not mapping a given u32::MAX into a u64::MAX * surface.acquire_texture: ignore timeout for Android < 11 Prior to Android 11 then Android's vkAcquireNextImageKHR implementation was non-conformant and didn't support timeouts and additionally would log a verbose warning if a timeout was requested. For reference this version of AcquireNextImageKHR doesn't support timeouts: https://android.googlesource.com/platform/frameworks/native/+/refs/tags/android-mainline-10.0.0_r13/vulkan/libvulkan/swapchain.cpp#1426 and this version does: https://android.googlesource.com/platform/frameworks/native/+/refs/tags/android-mainline-11.0.0_r45/vulkan/libvulkan/swapchain.cpp#1438 (i.e. timeout support was added in Android 11) This patch adds a dependency on the `android-properties` crate that provides a simple wrapper for the `__system_property_set` syscall so that the platform version can be read via the `ro.build.version.sdk` property and then for versions < 30 (corresponds to Android 11) any timeout given to `acquire_texture` will be ignored (and `u64::MAX` will be passed to Vulkan)
2022-06-04 16:05:40 +00:00
2021-06-05 05:44:21 +00:00
[dependencies.naga]
2023-10-25 20:51:36 +00:00
path = "../naga"
2024-01-17 19:42:11 +00:00
version = "0.19.0"
features = ["clone"]
2021-06-08 18:58:48 +00:00
[build-dependencies]
cfg_aliases.workspace = true
# DEV dependencies
2021-06-08 18:58:48 +00:00
[dev-dependencies.naga]
2023-10-25 20:51:36 +00:00
path = "../naga"
2024-01-17 19:42:11 +00:00
version = "0.19.0"
2021-06-08 18:58:48 +00:00
features = ["wgsl-in"]
[dev-dependencies]
cfg-if = "1"
env_logger = "0.10"
glam = "0.25.0" # for ray-traced-triangle example
build(deps): bump the patch-updates group with 16 updates (#5115) Bumps the patch-updates group with 16 updates: | Package | From | To | | --- | --- | --- | | [bitflags](https://github.com/bitflags/bitflags) | `2.4.1` | `2.4.2` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.10.1` | `0.10.2` | | [smallvec](https://github.com/servo/rust-smallvec) | `1.12.0` | `1.13.1` | | [winit](https://github.com/rust-windowing/winit) | `0.29.9` | `0.29.10` | | [anstream](https://github.com/rust-cli/anstyle) | `0.6.7` | `0.6.11` | | [clap](https://github.com/clap-rs/clap) | `4.4.16` | `4.4.18` | | [fdeflate](https://github.com/image-rs/fdeflate) | `0.3.3` | `0.3.4` | | [hermit-abi](https://github.com/hermitcore/hermit-rs) | `0.3.3` | `0.3.4` | | [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.12` | `0.4.13` | | [pkg-config](https://github.com/rust-lang/pkg-config-rs) | `0.3.28` | `0.3.29` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.76` | `1.0.78` | | [rayon](https://github.com/rayon-rs/rayon) | `1.8.0` | `1.8.1` | | [regex](https://github.com/rust-lang/regex) | `1.10.2` | `1.10.3` | | [smol_str](https://github.com/rust-analyzer/smol_str) | `0.2.0` | `0.2.1` | | [unicode-bidi](https://github.com/servo/unicode-bidi) | `0.3.14` | `0.3.15` | | [uuid](https://github.com/uuid-rs/uuid) | `1.6.1` | `1.7.0` | Updates `bitflags` from 2.4.1 to 2.4.2 - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/2.4.1...2.4.2) Updates `env_logger` from 0.10.1 to 0.10.2 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.1...v0.10.2) Updates `smallvec` from 1.12.0 to 1.13.1 - [Release notes](https://github.com/servo/rust-smallvec/releases) - [Commits](https://github.com/servo/rust-smallvec/compare/v1.12.0...v1.13.1) Updates `winit` from 0.29.9 to 0.29.10 - [Release notes](https://github.com/rust-windowing/winit/releases) - [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-windowing/winit/compare/v0.29.9...v0.29.10) Updates `anstream` from 0.6.7 to 0.6.11 - [Commits](https://github.com/rust-cli/anstyle/compare/anstream-v0.6.7...anstream-v0.6.11) Updates `clap` from 4.4.16 to 4.4.18 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.16...v4.4.18) Updates `fdeflate` from 0.3.3 to 0.3.4 - [Changelog](https://github.com/image-rs/fdeflate/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/fdeflate/compare/v0.3.3...v0.3.4) Updates `hermit-abi` from 0.3.3 to 0.3.4 - [Release notes](https://github.com/hermitcore/hermit-rs/releases) - [Commits](https://github.com/hermitcore/hermit-rs/compare/hermit-abi-0.3.3...hermit-abi-0.3.4) Updates `linux-raw-sys` from 0.4.12 to 0.4.13 - [Commits](https://github.com/sunfishcode/linux-raw-sys/compare/v0.4.12...v0.4.13) Updates `pkg-config` from 0.3.28 to 0.3.29 - [Changelog](https://github.com/rust-lang/pkg-config-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/pkg-config-rs/compare/0.3.28...0.3.29) Updates `proc-macro2` from 1.0.76 to 1.0.78 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.76...1.0.78) Updates `rayon` from 1.8.0 to 1.8.1 - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.0...rayon-core-v1.8.1) Updates `regex` from 1.10.2 to 1.10.3 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.2...1.10.3) Updates `smol_str` from 0.2.0 to 0.2.1 - [Commits](https://github.com/rust-analyzer/smol_str/commits) Updates `unicode-bidi` from 0.3.14 to 0.3.15 - [Release notes](https://github.com/servo/unicode-bidi/releases) - [Commits](https://github.com/servo/unicode-bidi/commits) Updates `uuid` from 1.6.1 to 1.7.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.6.1...1.7.0) --- updated-dependencies: - dependency-name: bitflags dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: smallvec dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-updates - dependency-name: winit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: anstream dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: fdeflate dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: hermit-abi dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: linux-raw-sys dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: pkg-config dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: proc-macro2 dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: rayon dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: regex dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: smol_str dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: unicode-bidi dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: uuid dependency-type: indirect update-type: version-update:semver-minor dependency-group: patch-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-22 06:00:32 +00:00
winit = { version = "0.29.10", features = [
"android-native-activity",
] } # for "halmark" example
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
2022-12-15 20:46:28 +00:00
glutin = "0.29.1" # for "gles" example