diff options
author | 2025-05-08 13:50:07 +0100 | |
---|---|---|
committer | 2025-05-08 13:50:07 +0100 | |
commit | 39a35689d385c89f79f97ce69bf214308be5e2fd (patch) | |
tree | c4fbdca93d18f95f21a30cc6ec8d35b9b56b05ce /.cargo | |
parent | e8aa5b71df378669ff732444a5f8c57098052e5e (diff) | |
download | macaw-web-39a35689d385c89f79f97ce69bf214308be5e2fd.tar.gz macaw-web-39a35689d385c89f79f97ce69bf214308be5e2fd.tar.bz2 macaw-web-39a35689d385c89f79f97ce69bf214308be5e2fd.zip |
feat: OPFS database
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 19 |
1 files changed, 19 insertions, 0 deletions
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 |