-
Notifications
You must be signed in to change notification settings - Fork 150
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
Rust minimum version should be updated #258
Comments
It sounds like there might be a way to automate/test for this already. Not certain if this will be useful, but it looks like it might be so I'll share it. |
Hi there, This crates minimum supported rust version is 1.64 (https://github.com/rustls/hyper-rustls/blob/main/Cargo.toml#L5) so your Rust version should be OK. We test this Rust version in our CI as well: https://github.com/rustls/hyper-rustls/blob/main/.github%2Fworkflows%2Fbuild.yml#L83-L97 Are you sure the compilation error you are getting with uv is from this crate? The error in your linked issue looks to me to be from a crate named 'pubgrub':
|
Aw, my bad. I think you are right! Thank you for setting me on the right path. It looks like the installation is multi-threaded or something, so the order wasn't what I was expecting. |
Happy to help :-) Cargo installs dependencies in parallel by default and it's easy to mix up the output. |
Hi,
It looks like some new Rust features are being used, causing the build to fail for me in a less than intuitive way. 1.74 is too old, so I assume 1.75 or 1.76 is the minimum version. I know little of Rust, but I think this is easy to set in Cargo.toml, and currently is but to something much older.
Thanks!
Related: astral-sh/uv#2442
The text was updated successfully, but these errors were encountered: