-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not compile #1645
Comments
Does this also happen with the latest version of Vulkano? |
in version 0.24.0 I get: ####################################################################### error[E0658]: use of unstable library feature 'array_value_iter' error[E0658]: use of unstable library feature 'array_value_iter' error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error[E0658]: use of unstable library feature 'str_split_once': newly added error: aborting due to 10 previous errors For more information about this error, try To learn more, run the command again with --verbose. ####################################################################### The previous errors were in version 0.19, which seems to be recommended by vulkano.rs I have to say I am quite new to Rust, but it seems odd that cargo check gives me this even though I didn't write a single line of code yet... |
Those messages about unstable library features make me think you are using an old version of the Rust compiler. Do the errors go away if you update it? |
I updated the compilers, the errors did in fact go away! thanks so much! :) |
Just added the dependency, empty hello word project...
The text was updated successfully, but these errors were encountered: