1
2
3
4
5
6
7
8
9
|
[target.'cfg(target_family="wasm")']
rustflags = ["-C", "llvm-args=--mattr=+bulk-memory-opt,+simd128,+relaxed-simd,+tail-call,+extended-const",
"-C", "target-feature=+simd128,+relaxed-simd,+tail-call,+extended-const",
"-Z", "unstable-options",
"-C", "panic=immediate-abort"]
[unstable]
build-std = ["compiler_builtins", "std", "core", "alloc", "panic_abort"]
build-std-features = ["default"] # dont compile in panic-unwind
|