-
Notifications
You must be signed in to change notification settings - Fork 342
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
Build failing on latest nightly #1058
Comments
Seems likely related to rust-lang/rust#103291, which just merged |
Yup, but I don't understand why it's not failing when building |
Got the same error. Seems caused by upstream. |
You likely need to run |
Nope, it's already picking that up and the issue is till happening:
|
I think it's only fixed in the master branch, log v0.4.17 depends on older version of value-bag: https://github.com/rust-lang/log/blob/7fb28c36c7a418912612ab37ab49bd4ca1a3a7f5/Cargo.toml#L66 |
Oh true! I thought 0.4.17 was earlier this month but it's a year old and there hasn't been a log release since then. Looks like the |
They released 0.4.18 a couple of hours ago, which fixes the issue. |
I'm going to close this issue, then. Thanks everyone :) |
Updating the version of the 'log' dependency to 0.4.18 to fix compilation issues on recent Nightly toolchains. See async-rs/async-std#1058 for a similar issue.
* fix: Fix panic on 'Nan' in csv_str_to_value This fixes the panic that was thrown when csv_str_to_value attempted to convert an 'invalid' float value into a JSON number. If the float value was not representable as a JSON number, it would panic. The new behaviour is to fall back to representing 'invalid' float values as Strings, but still attempt to parse them as numbers first. * chore: Update 'log' dep version to 0.4.18 Updating the version of the 'log' dependency to 0.4.18 to fix compilation issues on recent Nightly toolchains. See async-rs/async-std#1058 for a similar issue. * chore: Run rustfmt, add clippy allow Ran rustfmt, there were some existing changes that ended up getting reformatted. Added an explicit `#[allow(clippy::default_constructed_unit_structs)]` in `core/src/graph/number.rs` - `OsRng::default()` is used in a unit test.
It looks like the build is failing on
rustc 1.71.0-nightly (1a5f8bce7 2023-05-26)
, because of an issue in the transitivevalue-bag
dependency (viaasync-io
):Funny thing is: I can't reproduce this failure building either
async-io
orlog
(which is what pulls invalue-bag
) directly.Anyone got any idea what's going on there?
The text was updated successfully, but these errors were encountered: