From 76f307c92f054f3632546028f9a1d75f60d80ccd Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Fri, 6 Dec 2024 11:57:05 +0100 Subject: [PATCH] Remove stale references to `d3d12` bindings wrapper crate (#6675) While looking through some recent activity for the D3D12 crate, in particular a spelling fix for the crates.io link to `d3d12`, I realized that I completely forgot to remove these references to the now unused and removed `d3d12` crate in #5956. --- README.md | 3 +-- wgpu-hal/README.md | 4 ++-- wgpu-hal/src/lib.rs | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fb571bd016..ef586cea0a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ The repository hosts the following libraries: - [![Crates.io](https://img.shields.io/crates/v/wgpu-hal.svg?label=wgpu-hal)](https://crates.io/crates/wgpu-hal) [![docs.rs](https://docs.rs/wgpu-hal/badge.svg)](https://docs.rs/wgpu-hal/) - Internal unsafe GPU API abstraction layer. - [![Crates.io](https://img.shields.io/crates/v/wgpu-types.svg?label=wgpu-types)](https://crates.io/crates/wgpu-types) [![docs.rs](https://docs.rs/wgpu-types/badge.svg)](https://docs.rs/wgpu-types/) - Rust types shared between all crates. - [![Crates.io](https://img.shields.io/crates/v/naga.svg?label=naga)](https://crates.io/crates/naga) [![docs.rs](https://docs.rs/naga/badge.svg)](https://docs.rs/naga/) - Stand-alone shader translation library. -- [![Crates.io](https://img.shields.io/crates/v/d3d12.svg?label=d3d12)](https://crates.io/crates/d3d12) [![docs.rs](https://docs.rs/d3d12/badge.svg)](https://docs.rs/d3d12/) - Collection of thin abstractions over d3d12. - [![Crates.io](https://img.shields.io/crates/v/deno_webgpu.svg?label=deno_webgpu)](https://crates.io/crates/deno_webgpu) - WebGPU implementation for the Deno JavaScript/TypeScript runtime The following binaries: @@ -120,7 +119,7 @@ On Linux, you can point to them using `LD_LIBRARY_PATH` environment. Due to complex dependants, we have two MSRV policies: -- `d3d12`, `naga`, `wgpu-core`, `wgpu-hal`, and `wgpu-types`'s MSRV is **1.76**, but may be lower than the rest of the workspace in the future. +- `naga`, `wgpu-core`, `wgpu-hal`, and `wgpu-types`'s MSRV is **1.76**, but may be lower than the rest of the workspace in the future. - The rest of the workspace has an MSRV of **1.76** as well right now, but may be higher than above listed crates. It is enforced on CI (in "/.github/workflows/ci.yml") with the `CORE_MSRV` and `REPO_MSRV` variables. diff --git a/wgpu-hal/README.md b/wgpu-hal/README.md index 4f048eb1bc..c1abf60ad5 100644 --- a/wgpu-hal/README.md +++ b/wgpu-hal/README.md @@ -84,12 +84,12 @@ platform graphics APIs: - Metal on macOS, using the [`metal`] crate's bindings. -- Direct3D 12 on Windows, using the [`d3d12`] crate's bindings. +- Direct3D 12 on Windows, using the [`windows`] crate's bindings. [`ash`]: https://crates.io/crates/ash [MoltenVK]: https://github.com/KhronosGroup/MoltenVK [`metal`]: https://crates.io/crates/metal -[`d3d12`]: https://crates.io/crates/d3d12 +[`windows`]: https://crates.io/crates/windows ## Secondary backends diff --git a/wgpu-hal/src/lib.rs b/wgpu-hal/src/lib.rs index 49dbbac0da..d989f6dc7e 100644 --- a/wgpu-hal/src/lib.rs +++ b/wgpu-hal/src/lib.rs @@ -82,12 +82,12 @@ //! //! - Metal on macOS, using the [`metal`] crate's bindings. //! -//! - Direct3D 12 on Windows, using the [`d3d12`] crate's bindings. +//! - Direct3D 12 on Windows, using the [`windows`] crate's bindings. //! //! [`ash`]: https://crates.io/crates/ash //! [MoltenVK]: https://github.com/KhronosGroup/MoltenVK //! [`metal`]: https://crates.io/crates/metal -//! [`d3d12`]: https://crates.io/crates/d3d12 +//! [`windows`]: https://crates.io/crates/windows //! //! ## Secondary backends //!