rhai/no_std/no_std_test
2021-07-08 14:09:31 +08:00
..
src Fix building no_std on Linux and Windows 2020-07-25 12:04:08 +02:00
Cargo.toml Revert no-std profile changes and fix README. 2021-07-04 17:09:50 +08:00
README.md Enable json command in REPL. 2021-07-08 14:09:31 +08:00

no-std Test Sample

This sample application is a bare-bones no-std build for testing.

wee_alloc is used as the allocator.

To Build

The nightly compiler is required:

cargo +nightly build --release

A specific profile can also be used:

cargo +nightly build --profile unix -Z unstable-options

Three profiles are defined: unix, windows and macos.

The release build is optimized for size. It can be changed to optimize on speed instead.