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 <noreply@paperclip.ing>
This commit is contained in:
SoftwareEngineer 2026-06-22 14:31:27 +02:00 committed by CTO
parent 7ad41aa141
commit 931c47c53d

15
go.mod
View File

@ -1,16 +1,3 @@
module github.com/elfoundation/hatch module github.com/elfoundation/hatch
go 1.25.0 go 1.24.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
)