Skip to content

Commit 2d336ec

Browse files
committed
more accurate
1 parent 37c5322 commit 2d336ec

File tree

1 file changed

+1
-1
lines changed
  • content/blog/2024/12-12-rust-feature-debugging

1 file changed

+1
-1
lines changed

content/blog/2024/12-12-rust-feature-debugging/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Luckily we now know already what feature we are looking for: `basis-universal`,
8888
│ │ ├── bevy v0.15.0 (*)
8989
```
9090

91-
Here we go. Our own crate `bevy_libgdx_atlas` enables the feature `basis-universal` which in turn enables the dependency `basis-universal` which breaks our build on **wasm**. That makes it easier to fix. Funny enough it was used to enable `bevy_image` while trying to depend on the smallest subset of features of `bevy`. This is a known issue in Bevy 0.15, see [#16563](https://github.com/bevyengine/bevy/issues/16563). But there is a cleaner workaround by just enabling the `bevy_image` feature.
91+
Here we go. Our own crate `bevy_libgdx_atlas` enables the feature `basis-universal` which in turn enables the dependency `basis-universal` which breaks our build on **wasm**. That makes it easier to fix. Funny enough it was used to enable `bevy_image` while trying to depend on the smallest subset of features of `bevy`. This is a known issue in Bevy 0.15, see [#16563](https://github.com/bevyengine/bevy/issues/16563). But there is a cleaner workaround by just enabling the `bevy_image` feature in `bevy_internal` see [here](https://github.com/rustunit/bevy_libgdx_atlas/commit/20cb2e99ef8dd696dfbbff3ef120591cae82703b).
9292

9393
## Improving ergonomics
9494

0 commit comments

Comments
 (0)