27 lines
943 B
Modula-2
27 lines
943 B
Modula-2
// CI probe: exercise Go env BuildKit cache without changing dependencies.
|
|
// CI probe: verify reordered Go env cache keeps npm layers reusable.
|
|
module github.com/pikasTech/HWLAB
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/alicebob/miniredis/v2 v2.38.0
|
|
github.com/jackc/pgx/v4 v4.18.3
|
|
github.com/redis/go-redis/v9 v9.7.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.14.3 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/pgtype v1.14.0 // indirect
|
|
github.com/yuin/gopher-lua v1.1.1 // indirect
|
|
golang.org/x/crypto v0.27.0 // indirect
|
|
golang.org/x/text v0.18.0 // indirect
|
|
)
|