Compare commits

..

1 commit

Author SHA1 Message Date
9787710d59
feat: add zed extension
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 2m38s
Continuous Integration / Build Package (push) Successful in 3m46s
2026-04-19 17:58:54 +02:00

View file

@ -110,7 +110,12 @@
buildPhase = ''
export HOME=$TMPDIR
mkdir -p .cargo
cp ${vendoredDeps}/config.toml .cargo/config.toml
cat > .cargo/config.toml <<EOF
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "${vendoredDeps}"
EOF
cargo build --release --target wasm32-wasip1 --offline
'';