-
Notifications
You must be signed in to change notification settings - Fork 147
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
Changed array size to be 40 for E0308 #958
Conversation
Now there's the issue of:
I'm working to try to resolve it |
The previous error was caused by an outdated Tokio dependency as shown here: My Rust project is broken all of the sudden (StackOverflow). After using cargo-edit for upgrade, the output is attached. The new error is:
I'm working on that now |
Upgraded all dependencies using cargo-edit upgrade to solve previous errors in compilation
This commit added should_panic to tests which indicated by their context that they should panic given that they have the panic message in the comments. The only issue is not all of them panic but that should be solved in a separate fork
This changes appveyor configuration to use the nightly rustc compiler in order to use the recent stable-to-stable regression to compile
The previously mentioned issue was caused by an Internal Compilation Error (ICE) in rustc detailed in rust-lang/rust#112832 which has been resolved now thanks to rust-lang/rust#115559. This fork should be able to be merged to resolve the other mentioned issues.
but that seems to be somewhat deliberate given that their error message is included as a comment and their tested as "compile-fail". As a result I added the should_panic attribute to that particular batch of tests. |
Temporarily removed stable as a rust option for github actions. This should be reverted when 1.74 is made the rustc stable version and is only due to the ICE error being presently resolved in nightly. This leads to some clear instability with nightly features, but it's currently the only option
Removed the stable requirement from .travis.yml for the rustc compiler
Updated nightly version in .travis.yml and fixed errors in previous commit regarding using solely the nightly version of rustc
Updated sccache install script to use version v0.5.4
Clear tmp file recursively to prevent cargo artifacts from interfering
I'm going to work on it a bit using my own appveyor so I don't continue to waste CI time |
This changes the array size to be 40 within the test to resolve the error E0308. This will close #957