rhai/no_std/no_std_test
Friz64 8b7e56a908 Fix Unix CI for no-std
Took a bit of digging until i found the issue i was looking for.

https://github.com/rust-lang/rust/issues/79609
2022-01-26 19:56:42 +01:00
..
src Fix Unix CI for no-std 2022-01-26 19:56:42 +01:00
Cargo.toml Remove unnamed profile feature. 2022-01-11 11:34:15 +08:00
README.md Remove unnamed profile feature. 2022-01-11 11:34:15 +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

Three profiles are defined: unix, windows and macos.

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