-
Notifications
You must be signed in to change notification settings - Fork 89
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
Toolchain pinning necessary? #192
Comments
I'm not sure I understand, |
I see, sorry for being not as experienced in Rust, maybe you can help me understand. What I did is clone the repo, using the master branch, and run
so it seems that some of the dependencies have lost compatibility with 1.34.2 and cargo does not succeed in getting compatible older versions |
Ah, now I see. That's of course quite unfortunate because there are two goals at conflict here. Let me explain by given a rough overview over the build tool.
Now, we want the first set to be compatible to Problematically there's a conflict of interests here: If we don't setup any toolchain version then it's easy to accidentally add code that isn't compatible with On your local machine you can always overwrite the default choice: |
Thanks for explaining! This is the error: |
Hi,
just ran
cargo test
and noticed that the currently pinned toolchain (1.34.2) is too low, we need at least 1.40.0Is there a reason this needs to be pinned? Could just delete the rust-toolchain file, tests run fine with the stable toolchain, in my case:
stable-x86_64-pc-windows-msvc
rustc 1.53.0 (53cb7b09b 2021-06-17)
thanks,
Victor
The text was updated successfully, but these errors were encountered: