[package] name = "wgpu-core-deps-windows-linux-android" version.workspace = true authors.workspace = true edition.workspace = true description = "Feature unification helper crate for the Windows/Linux/Android platforms" homepage.workspace = true repository.workspace = true keywords.workspace = true license.workspace = true readme = "README.md" # 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.76" [features] gles = ["wgpu-hal/gles"] vulkan = ["wgpu-hal/vulkan"] dx12 = ["wgpu-hal/dx12"] renderdoc = ["wgpu-hal/renderdoc"] # Depend on wgpu-hal conditionally, so that the above features only apply to wgpu-hal on this set of platforms. [target.'cfg(any(windows, target_os = "linux", target_os = "android"))'.dependencies] wgpu-hal.workspace = true