You can download the latest native clients from the releases page here.
Hosted on GitHub pages: Play Here
https://tsarbomb.itch.io/alchemists-apprentice
cargo runcargo buildTo build and run the WASM/WebGL version of the game:
$ rustup target install wasm32-unknown-unknown
$ cargo build --release --target wasm32-unknown-unknown
$ wasm-bindgen --out-dir ./out/ --target web .\target\wasm32-unknown-unknown\release\alchemist_apprentice.wasmThere is an included html file to help you serve the game.
Any web server can accomplish this, but for ease we can use the serve npm package.
npx serve .