Jakob Hellermann
Jakob Hellermann
I looked into what it would take to support `watt` as a feature in syn, it doesn't seem to be that complicated: https://github.com/jakobhellermann/syn-watt/commits/watt-feature
Maybe this could be solved by providing support for cargo workspaces, so that for example `cargo watt build --repo https://github.com/clap-rs/clap --member clap_derive` would clone the whole repo, look at Cargo.toml...
I started a new crate for dynamic bevy_ecs utilites over at https://github.com/jakobhellermann/bevy_ecs_dynamic
hey, I stumbled upon this bug today. Is there a path forward for merging the PR? Thanks for your time on this project.
I think this is because the validation messages are tied to the type itself, not the usage of the type. ```rs fn uses_bool(val: bool) {} @fragment fn fragment( @builtin(front_facing) is_front_a:...
One question I just thought of is if we want to represent owned values in these kinds of APIs as `&Reflect` with the expectation that we will just call `FromReflect`...
Isn't this pretty central to the design of the bevy world? The world contains `UnsafeCell`s in the storages, so multiple systems can share a `&World` while carefully making sure that...
I opened #6404 implementing my thoughts in #5956 on how to split our usages of `&World` to mean "shared access to the world" and `&World` to mean "manually synchronized through...
I think this breaks usages like ```rust let id = commands.spawn().id(); commands.get_or_spawn(entity).insert(value); ``` Where the two commands could even be in a different system (which proper `b.after(a)` ordering). I don't...