Sorseg

Results 10 comments of Sorseg

Unfortunately it does not seem to help. Here's the output with the patched version (save happened around `08:28:27`) https://gist.github.com/Sorseg/47563fa04552fe11a9f2dd31aef26b6a I cannot say if this is an issue on bevy or...

I can fix the doctest some time tomorrow

Doctests for `bevy_ecs` are run separately, `bevy_ecs` doesn't depend on `bevy`, meaning it doesn't have access to the `DefaultPlugins`. I tried to use the minimal [`startup_system`](https://github.com/bevyengine/bevy/blob/3cf70ba4f9d62396240b186ff379d27a312d2aa2/examples/ecs/startup_system.rs) example, but bevy_ecs doesn't...

Indeed, I had a single html tag in the answer card and removing it dropped the new card appearing time to hundreds of milliseconds, I'd like to have the tag...

Alternative solution might be to change id types to `Arc`, which should make cloning very cheap

I agree that this is not a high priority issue, I posted it here mostly for other people running into this linking issue to figure out the cause, as it...

I was able to reproduce it in the [repro repo](https://github.com/Sorseg/bevy_liking_error/tree/main) with docker `sudo docker run -it -v $PWD:/usr/src --workdir /usr/src rust:1.79.0 cargo build`

I was able to boil it down to this ```rust struct S { f: u32, } fn main() { let s = Some(S { f: 42 }); match s {...