wgpu/wgpu-hal/Cargo.toml

140 lines
4.8 KiB
TOML
Raw Normal View History

2021-06-04 05:19:36 +00:00
[package]
name = "wgpu-hal"
version = "0.16.0"
2022-12-15 20:46:28 +00:00
authors = ["wgpu developers"]
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.60"
2021-06-04 05:19:36 +00:00
[package.metadata.docs.rs]
# Ideally we would enable all the features.
#
# However the metal features fails 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
# with the dx11 and dx12 features.
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"]
vulkan = ["naga/spv-out", "ash", "gpu-alloc", "gpu-descriptor", "libloading", "smallvec"]
2023-02-24 16:56:06 +00:00
gles = ["naga/glsl-out", "glow", "khronos-egl", "libloading"]
2023-02-24 16:55:54 +00:00
dx11 = ["naga/hlsl-out", "d3d12", "libloading", "winapi/d3d11", "winapi/std", "winapi/d3d11_1", "winapi/d3d11_2", "winapi/d3d11sdklayers", "winapi/dxgi1_6"]
dx12 = ["naga/hlsl-out", "d3d12", "bit-set", "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"]
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.5"
thiserror = "1"
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
glow = { version = "0.12.2", 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"
version = "0.16"
[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-02-24 16:56:06 +00:00
khronos-egl = { version = "4.1", 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-02-24 16:56:06 +00:00
khronos-egl = { version = "4.1", 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.22", default_features = false, features = ["d3d12", "windows", "public-winapi"], optional = true }
hassle-rs = { version = "0.10", optional = true }
winapi = { version = "0.3", features = ["profileapi", "libloaderapi", "windef", "winuser", "dcomp"] }
2023-02-24 16:55:54 +00:00
d3d12 = { version = "0.6.0", git = "https://github.com/gfx-rs/d3d12-rs", rev = "b940b1d71", features = ["libloading"], optional = true }
[target.'cfg(any(target_os="macos", target_os="ios"))'.dependencies]
# backend: Metal
block = { version = "0.1", optional = true }
2023-06-28 10:30:28 +00:00
metal = { git = "https://github.com/gfx-rs/metal-rs.git", rev = "a6a0446", default_features = false }
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.86"
web-sys = { version = "0.3.61", features = ["Window", "HtmlCanvasElement", "WebGl2RenderingContext", "OffscreenCanvas"] }
js-sys = "0.3.63"
[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]
2022-12-15 20:46:28 +00:00
git = "https://github.com/gfx-rs/naga"
rev = "76003dc0035d53a474d366dcdf49d2e4d12e921f"
version = "0.12.0"
features = ["clone"]
2021-06-08 18:58:48 +00:00
# DEV dependencies
2021-06-08 18:58:48 +00:00
[dev-dependencies.naga]
2022-12-15 20:46:28 +00:00
git = "https://github.com/gfx-rs/naga"
rev = "76003dc0035d53a474d366dcdf49d2e4d12e921f"
version = "0.12.0"
2021-06-08 18:58:48 +00:00
features = ["wgsl-in"]
[dev-dependencies]
cfg-if = "1"
env_logger = "0.10"
winit = "0.27.1" # 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