diff options
| author | Shulhan <ms@kilabit.info> | 2025-12-29 14:14:29 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-12-29 14:14:29 +0700 |
| commit | 4654d45c96f86133bc0258d67c919dea7884fc46 (patch) | |
| tree | 5ed00f5bd59dd72d862f19739edfdc9c759640a1 /go.mod | |
| parent | 5aa9337aeae709244846782ac98f276ad7965d78 (diff) | |
| download | haminer-4654d45c96f86133bc0258d67c919dea7884fc46.tar.xz | |
make: replace external linter with gocheck
The fieldalignment and shadow is a linter from golang.org/x/tools.
This program actually have an API that can be used.
The pakakeh.go/lib/goanalysis wrap those APIs into a single function
call that can be run inside a main.
This minimize and simplified our tools dependencies.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,16 +1,19 @@ module git.sr.ht/~shulhan/haminer -go 1.23.4 +go 1.24.0 require ( - git.sr.ht/~shulhan/pakakeh.go v0.59.0 + git.sr.ht/~shulhan/pakakeh.go v0.60.2 github.com/lib/pq v1.10.9 ) require ( - golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect - golang.org/x/net v0.34.0 // indirect - golang.org/x/sys v0.29.0 // indirect + golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93 // indirect + golang.org/x/mod v0.31.0 // indirect + golang.org/x/net v0.48.0 // indirect + golang.org/x/sync v0.19.0 // indirect + golang.org/x/sys v0.39.0 // indirect + golang.org/x/tools v0.40.0 // indirect ) //replace git.sr.ht/~shulhan/pakakeh.go => ../pakakeh.go |
