Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme so bindgen installation matches what we need #262

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ Make sure you install rust from the main rust website. Cargo should take care of
These are only needed if you're going to build a WebAssembly binary:
```bash
$ sudo apt install binaryen
$ cargo install wasm-bindgen-cli basic-http-server
$ cargo install -f wasm-bindgen-cli --version 0.2.93
$ cargo install basic-http-server
$ rustup target add wasm32-unknown-unknown
```

Expand Down
2 changes: 1 addition & 1 deletion rmf_site_editor_web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ crate-type = ["cdylib", "rlib"]
name = "librmf_site_editor_web"

[dependencies]
wasm-bindgen = "=0.2.93"
wasm-bindgen = "=0.2.93" # Remember to update the README if we change this version number
rmf_site_editor = { path = "../rmf_site_editor" }
console_error_panic_hook = "0.1.7"
Loading