From 39a35689d385c89f79f97ce69bf214308be5e2fd Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 8 May 2025 13:50:07 +0100 Subject: feat: OPFS database --- .cargo/config.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to '.cargo') diff --git a/.cargo/config.toml b/.cargo/config.toml index c91c3f3..9fa8b2c 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,21 @@ +[build] +rustflags = [ + # LLD (shipped with the Rust toolchain) is used as the default linker + # "-C", "link-arg=-Tlink.x", + + # if you run into problems with LLD switch to the GNU linker by commenting out + # this line + # "-C", "linker=arm-none-eabi-ld", + + # if you need to link to pre-compiled C libraries provided by a C toolchain + # use GCC as the linker by commenting out both lines above and then + # uncommenting the three lines below + "-C", + "target-feature=+atomics,+bulk-memory,+mutable-globals", +] + +[unstable] +build-std = ["std", "panic_abort"] + [net] git-fetch-with-cli = true -- cgit