feat: refactor sgclaw around zeroclaw compat runtime
This commit is contained in:
12
third_party/zeroclaw/.cargo/audit.toml
vendored
Normal file
12
third_party/zeroclaw/.cargo/audit.toml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# cargo-audit configuration
|
||||
# https://rustsec.org/
|
||||
|
||||
[advisories]
|
||||
ignore = [
|
||||
# wasmtime vulns via extism 1.13.0 — no upstream fix; plugins feature-gated
|
||||
"RUSTSEC-2026-0006", # wasmtime f64.copysign segfault on x86-64
|
||||
"RUSTSEC-2026-0020", # WASI guest-controlled resource exhaustion
|
||||
"RUSTSEC-2026-0021", # WASI http fields panic
|
||||
# instant crate unmaintained — transitive dep via nostr; no upstream fix
|
||||
"RUSTSEC-2024-0384",
|
||||
]
|
||||
13
third_party/zeroclaw/.cargo/config.toml
vendored
Normal file
13
third_party/zeroclaw/.cargo/config.toml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
[target.x86_64-unknown-linux-musl]
|
||||
rustflags = ["-C", "link-arg=-static"]
|
||||
|
||||
[target.aarch64-unknown-linux-musl]
|
||||
rustflags = ["-C", "link-arg=-static", "-C", "link-arg=-Wl,-z,stack-size=8388608"]
|
||||
|
||||
# Android targets (NDK toolchain)
|
||||
[target.armv7-linux-androideabi]
|
||||
linker = "armv7a-linux-androideabi21-clang"
|
||||
|
||||
[target.aarch64-linux-android]
|
||||
linker = "aarch64-linux-android21-clang"
|
||||
rustflags = ["-C", "link-arg=-Wl,-z,stack-size=8388608"]
|
||||
Reference in New Issue
Block a user