summaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
authoru <@>2026-03-11 10:07:13 -0700
committeru <@>2026-03-11 10:09:14 -0700
commit2b05abea03cdaca42b0ab69852799ee1542b467f (patch)
treed2fb7786eccb60afec15f95ab44ffb6b761dedd2 /.cargo
parent9bdd9eb5442bbdeefa08ea60fd966c8f9a83c543 (diff)
build-std, give up on transmute dance
the file is streamed anyway. build-std was failing with workers 0.7 but they fixed it? maybe rustup update fixed it and my stuff was mismatched. idk. its annoying
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index 0a977cc..ba74195 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,2 +1,6 @@
[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"]
+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"]
+
+[unstable]
+build-std = ["compiler_builtins", "std", "core", "alloc", "panic_abort"]