-
so im just trying to render a triangle using ash, winit, and rust-gpu. the problem is that after downgrading my rust version (for rust-gpu) i get an error compiling ahash (which is dependancy of winit): ```error[E0658]: use of unstable library feature 'build_hasher_simple_hash_one'
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I think the probably may be that you're inadvertently compiling some It looks like Let me know if that's not the case, or if I'm misunderstanding :) |
Beta Was this translation helpful? Give feedback.
-
Oh, just for clarity - how is your project set up? Compiling shader crates is a Just FYI that there is a tool that will help compile your shader crates called cargo-gpu that we maintain. It's still in alpha but it's quite useful. |
Beta Was this translation helpful? Give feedback.
Ok, so now i have a setup with three crates: cpu code, shader-crate, shader compiler, with the latter two running an older rust version. The problem is that cargo doesn't detect the panic_handler and eh_personality. For some reason, i had to include
#![cfg_attr(target_arch = "spirv", no_std)]
in order to get rid of unimplemented panic / eh_personality errors. Everything works now.