update readme and rust toolchain

This commit is contained in:
Percs
2024-07-28 22:08:50 -05:00
parent 016153f3c4
commit c7547f7964
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ Anura shows as more of a proof-of-concept with what's possible on the modern web
- `docker`
> [!NOTE]
> You will have to install the required Rust toolchain by running `rustup target add wasm32-unknown-unknown`.
> You will have to install the required Rust toolchain by running `rustup target add wasm32-unknown-unknown` and also `rustup target add i686-unknown-linux-gnu` if you are planning to build v86 images.
#### Building

View File

@@ -1,5 +1,5 @@
[toolchain]
channel = "nightly"
components = [ "rustc", "rust-std" ]
targets = [ "wasm32-unknown-unknown" ]
targets = [ "wasm32-unknown-unknown", "i686-unknown-linux-gnu" ]
profile = "minimal"