mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Delete the `naga::path_like` module, and simply using `String` and `str` instead. Nothing in Naga uses `Path` or `PathBuf` methods; indeed, Naga only converts these values back and forth from string-like types with `to_string_lossy` and `into`, such that using string-like, rather than path-like, types actually simplifies the code. This also avoids dead code warnings starting in Rust 1.89 that would otherwise require distracting `#[cfg_attr]` conditionals.