dojo icon indicating copy to clipboard operation
dojo copied to clipboard

Running Bevy app with wasm target leads to error when importing`torii-client`

Open elton-cs opened this issue 1 year ago • 5 comments
trafficstars

Describe the bug Bevy app will not compile when targeting wasm if torii-client is imported

To Reproduce

  1. Create a brand new rust binary: cargo new {example_project}
  2. Add bevy dependency: cargo add bevy
  3. Add the following in main.rs:
use bevy::prelude::*;

fn main() {
    App::new().add_plugins(DefaultPlugins).run();
}

  1. Add the following torii dependency and starknet core patch to the Cargo.toml file:
[dependencies]
bevy = "0.14.0"
torii-client = { git = "https://github.com/dojoengine/dojo.git" }

[patch.crates-io]
starknet-core = { git = "https://github.com/kariy/starknet-rs", branch = "dojo-patch" }
  1. Setup necessary wasm requirements to run a bevy app on the browser
  2. Run bevy app in browser with : cargo run --target wasm32-unknown-unknown

Expected behavior Compilation should not fail, and a black/gray window should show up on the browser.

elton-cs avatar Aug 23 '24 22:08 elton-cs