You've already forked wit-bindgen
mirror of
https://github.com/AdaCore/wit-bindgen.git
synced 2026-02-12 13:12:42 -08:00
* initial work * Fix formatting * Fix references to Rust library for guest code Improve documentation Other minor fixes * Fix wastime -> host_wasmtime_rust references Fixed feature flags * Fix demo deploy update readme improve help text * Update readme Co-authored-by: Kyle Brown <kbrown@singlestore.com> Co-authored-by: Kyle Brown <kyleb@liquidrocketry.com>
17 lines
428 B
Bash
17 lines
428 B
Bash
printf "Running 'postCreateCommand' Script\n"
|
|
|
|
# Install Rust Targets
|
|
printf "Installing Rust Targets\n"
|
|
rustup update stable --no-self-update
|
|
rustup default stable
|
|
rustup target add wasm32-unknown-unknown
|
|
rustup target add wasm32-wasi
|
|
|
|
# Install Python stuff
|
|
printf "Installing Python Dependencies"
|
|
pip install mypy wasmtime
|
|
|
|
# Install NPM dependencies
|
|
printf "Installing NPM Dependencies"
|
|
cd crates/gen-host-js && npm install
|