From 1ec60e69d7d4ea688c582eee49a6a3fe3bb8c609 Mon Sep 17 00:00:00 2001 From: Peter Huene Date: Sun, 3 Mar 2024 06:26:26 -0800 Subject: [PATCH] Add `no_std` to `wit-bindgen-rt` crate. --- crates/guest-rust/rt/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/guest-rust/rt/src/lib.rs b/crates/guest-rust/rt/src/lib.rs index 7bf4c2c0d..e84934ed8 100644 --- a/crates/guest-rust/rt/src/lib.rs +++ b/crates/guest-rust/rt/src/lib.rs @@ -1,3 +1,5 @@ +#![no_std] + extern crate alloc; /// For more information about this see `./ci/rebuild-libcabi-realloc.sh`.