Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
entity_path_vec!
and entity_path!
depending on ToString
bei…
…ng in scope. (#4766) ### What The macros used to work in `no_std`+`alloc` conditions, but that was broken in 0.12 by the addition of the `.to_string()` call. This change fixes it by making all items used by the macro use fully qualified, reexported paths; this way, the macro does not depend on the calling module and crate's imports at all. This change would ideally be released as a 0.12.1 bugfix. ### 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 newly built examples: [app.rerun.io](https://app.rerun.io/pr/4766/index.html) * Using examples from latest `main` build: [app.rerun.io](https://app.rerun.io/pr/4766/index.html?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [app.rerun.io](https://app.rerun.io/pr/4766/index.html?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 - [PR Build Summary](https://build.rerun.io/pr/4766) - [Docs preview](https://rerun.io/preview/8d39d674d8a6a26a3e9586553a2eab3264152240/docs) <!--DOCS-PREVIEW--> - [Examples preview](https://rerun.io/preview/8d39d674d8a6a26a3e9586553a2eab3264152240/examples) <!--EXAMPLES-PREVIEW--> - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)
- Loading branch information