We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Building bolero on Rust 1.57.0 doesn't seem possible anymore, and even Rust 1.63.0 has several issues with transitive dependencies:
bolero
package winnow v0.5.14 cannot be built because it requires rustc 1.64.0 or newer, while the currently active rustc version is 1.63.0 package addr2line v0.21.0 cannot be built because it requires rustc 1.65 or newer, while the currently active rustc version is 1.63.0 package hashbrown v0.14.0 cannot be built because it requires rustc 1.64.0 or newer, while the currently active rustc version is 1.63.0 package toml_datetime v0.6.3 cannot be built because it requires rustc 1.64.0 or newer, while the currently active rustc version is 1.63.0
package winnow v0.5.14 cannot be built because it requires rustc 1.64.0 or newer, while the currently active rustc version is 1.63.0
winnow v0.5.14
package addr2line v0.21.0 cannot be built because it requires rustc 1.65 or newer, while the currently active rustc version is 1.63.0
addr2line v0.21.0
package hashbrown v0.14.0 cannot be built because it requires rustc 1.64.0 or newer, while the currently active rustc version is 1.63.0
hashbrown v0.14.0
package toml_datetime v0.6.3 cannot be built because it requires rustc 1.64.0 or newer, while the currently active rustc version is 1.63.0
toml_datetime v0.6.3
I can get it to build on Rust 1.63.0 by pinning the following dependencies:
backtrace = { version = "=0.3.68" } (in bolero-engine) proc-macro-crate = "=1.3.0" (in bolero-generator-derive)
backtrace = { version = "=0.3.68" }
proc-macro-crate = "=1.3.0"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Building
bolero
on Rust 1.57.0 doesn't seem possible anymore, and even Rust 1.63.0 has several issues with transitive dependencies:I can get it to build on Rust 1.63.0 by pinning the following dependencies:
backtrace = { version = "=0.3.68" }
(in bolero-engine)proc-macro-crate = "=1.3.0"
(in bolero-generator-derive)The text was updated successfully, but these errors were encountered: