From 931c47c53d32f362e0114826300c10a757739d05 Mon Sep 17 00:00:00 2001 From: SoftwareEngineer Date: Mon, 22 Jun 2026 14:31:27 +0200 Subject: [PATCH] fix: remove storage-related deps from go.mod, set go 1.24 The bootstrap module has zero external dependencies (stdlib only). The previous commit accidentally included indirect deps from the storage layer work (modernc.org/sqlite, google/uuid) that do not belong in the bootstrap task. Co-Authored-By: Paperclip --- go.mod | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/go.mod b/go.mod index a09bf3cf..a2baa1c5 100644 --- a/go.mod +++ b/go.mod @@ -1,16 +1,3 @@ module github.com/elfoundation/hatch -go 1.25.0 - -require ( - github.com/dustin/go-humanize v1.0.1 // indirect - github.com/google/uuid v1.6.0 // indirect - github.com/mattn/go-isatty v0.0.20 // indirect - github.com/ncruces/go-strftime v1.0.0 // indirect - github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect - golang.org/x/sys v0.44.0 // indirect - modernc.org/libc v1.73.4 // indirect - modernc.org/mathutil v1.7.1 // indirect - modernc.org/memory v1.11.0 // indirect - modernc.org/sqlite v1.53.0 // indirect -) +go 1.24.0