Skip to content

Commit da88ee4

Browse files
committed
Sat Dec 13 23:54:59 PST 2025
1 parent 7e20d9d commit da88ee4

44 files changed

Lines changed: 4259 additions & 1881 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[target.wasm32-unknown-unknown]
2+
# Disable hardening flags that don't work with WASM
3+
rustflags = [
4+
"-C", "link-arg=-zstack-size=4194304",
5+
]

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ result
44
result-*
55
.direnv/
66
/.pre-commit-config.yaml
7+
node_modules/
8+
build/
9+
.output/

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"rust-analyzer.cargo.allTargets": true,
3+
"rust-analyzer.cargo.features": "all",
4+
"rust-analyzer.cargo.buildScripts.enable": true,
5+
"rust-analyzer.procMacro.enable": true
6+
}

0 commit comments

Comments
 (0)