Skip to content
Snippets Groups Projects
Verified Commit 5bc36d67 authored by Louis's avatar Louis :fire:
Browse files

Enable wasm-bindgen for uuid crate on wasm32 targets

parent c9e79b57
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,13 @@ kayak_font = { path = "../kayak_font" }
kayak_render_macros = { path = "../kayak_render_macros" }
morphorm = { git = "https://github.com/geom3trik/morphorm", rev = "1243152d4cebea46fd3e5098df26402c73acae91" }
resources = "1.1"
uuid = { version = "0.8", features = ["v4"] }
indexmap = "1.8"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
uuid = { version = "0.8", features = ["v4"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
uuid = { version = "0.8", features = ["v4", "wasm-bindgen"] }
[dependencies.bevy]
version = "0.8.0"
optional = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment