From e73dc1aa6ad056c1474a965d8ffc36a2392f819e Mon Sep 17 00:00:00 2001 From: vgtmy Date: Tue, 26 May 2026 03:19:24 +0000 Subject: [PATCH] fix: track Cargo.lock for reproducible WASM builds Remove Cargo.lock from .gitignore and add comment explaining it is required for reproducible Soroban/Stellar WASM contract builds. Closes #58 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0287537..0fb2646 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # Rust /target/ **/*.rs.bk -Cargo.lock +# Cargo.lock is tracked for reproducible WASM builds (Soroban/Stellar requirement) # Soroban compiled output *.wasm