-
Notifications
You must be signed in to change notification settings - Fork 366
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
rerun-cli fails to install due to error in time
dependency
#7216
Comments
I'm still trying to understand where this problem comes from (repros fine for me as well!), but meanwhile the following two commands seem to work:
|
building without |
Exacty. This error only happens with Rust ≥ 1.80, but |
But newer rustc versions should never fail to compile crates that compile fine with older rustc versions, right? I mean if this is about the rust version selected then what we're seeing is that |
In general, adding a trait implementation, such that there are two possibilities where there used to be one, can cause this error, but nobody wants to live in the world where “you can't add more trait implementations without a major version bump”, so It's currently in the category of “possibly acceptable breakage”. Arguably, this is a design flaw in Rust (there shouldn't be a special rule for unique implementations, so the type annotation should be required always), but a lot of stuff actually relies on that rule; here's some discussion on maybe fixing it cleverly. |
…ons (#7228) ### What * Closes #7216 `cargo +1.80.0 build -p rerun-cli` works after this ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/7228?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/7228?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [x] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/7228) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`.
The text was updated successfully, but these errors were encountered: