-
Notifications
You must be signed in to change notification settings - Fork 188
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
Compilation broken on nightly (int_roundings
feature)
#218
Comments
I also encountered this problem |
It will need to use explicit |
mtreinish
added a commit
to mtreinish/retworkx
that referenced
this issue
Sep 3, 2021
The coverage ci job uses the rust nightly channel to enable the coverage collection. However, building with nightly has recently stopped working because of a change breaking num-bigint (see rust-num/num-bigint#218 for more details). Until the rustc nightly behavior is reverted or a new num-bigint version is released that is compatible with the new nightly behavior this commit pins the nightly version used in the coverage job to a version prior to the failure.
mtreinish
added a commit
to Qiskit/rustworkx
that referenced
this issue
Sep 3, 2021
The coverage ci job uses the rust nightly channel to enable the coverage collection. However, building with nightly has recently stopped working because of a change breaking num-bigint (see rust-num/num-bigint#218 for more details). Until the rustc nightly behavior is reverted or a new num-bigint version is released that is compatible with the new nightly behavior this commit pins the nightly version used in the coverage job to a version prior to the failure.
bors bot
added a commit
that referenced
this issue
Sep 3, 2021
219: rust: use explicitily Integer::div_ceil r=cuviper a=catenacyber Fixes #218 cf rust-lang/rust#88581 Co-authored-by: Philippe Antoine <contact@catenacyber.fr> Co-authored-by: Josh Stone <cuviper@gmail.com>
Merged
I've now published 0.3.3 and 0.4.2 with the fix for this. |
3 tasks
edouardparis
added a commit
to edouardparis/revault-gui
that referenced
this issue
Sep 6, 2021
compilation was broken on nightly: rust-num/num-bigint#218 cargo update -p num-bigint
JesseWright
added a commit
to JesseWright/smithy-rs
that referenced
this issue
Sep 6, 2021
rust-lang/rust#88581 adds several new integer methods as inherent impls. These new methods are a breaking change accepted as a minor change. They already cause build failures with nightly and will eventually cause build failures with stable as well, unless rust-lang changes course. This uses `Integer::div_floor` explicitly to avoid accidentally calling the new nightly methods, same as done for rust-num/num-bigint#218.
2 tasks
edouardparis
added a commit
to edouardparis/revault-gui
that referenced
this issue
Sep 8, 2021
compilation was broken on nightly: rust-num/num-bigint#218 cargo update -p num-bigint
edouardparis
added a commit
to revault/revault-gui
that referenced
this issue
Sep 8, 2021
0738532 fix dep: bump num-bigint (edouard) Pull request description: compilation was broken on nightly: rust-num/num-bigint#218 cargo update -p num-bigint ACKs for top commit: danielabrozzoni: utACK 0738532 Tree-SHA512: b91dd8bc9fc6a255284dd0a0f2ea27d6b549c9b27fd89119a73a0a18452bba6060f6b617bacc0a8f068639fd22de4414aace650a9b1f2daae5ef2e971859b104
4 tasks
rcoh
added a commit
to smithy-lang/smithy-rs
that referenced
this issue
Sep 15, 2021
* Use `Integer::div_floor` explicitly rust-lang/rust#88581 adds several new integer methods as inherent impls. These new methods are a breaking change accepted as a minor change. They already cause build failures with nightly and will eventually cause build failures with stable as well, unless rust-lang changes course. This uses `Integer::div_floor` explicitly to avoid accidentally calling the new nightly methods, same as done for rust-num/num-bigint#218. * run cargo fmt Co-authored-by: Russell Cohen <rcoh@amazon.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just updated to the latest rustc nightly, looks like this new change breaks compilation of this crate.
error[E0658]: use of unstable library feature 'int_roundings'
The text was updated successfully, but these errors were encountered: