diff options
| author | Shulhan <ms@kilabit.info> | 2025-01-26 15:46:23 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-02-08 15:28:44 +0700 |
| commit | 77e055b2e0da5d76ca6651020f0eb990a6787e88 (patch) | |
| tree | b32e4aae63c1e036140d592164a09423052139a1 /go.mod | |
| parent | 3826603fb49edda796c2a5541b39b5bb00d3745c (diff) | |
| download | rescached-77e055b2e0da5d76ca6651020f0eb990a6787e88.tar.xz | |
internal/cmd/gocheck: add internal static analyzers
Instead of using binary fieldalignment and shadow, run them by creating
command that call the same Analyzer internally.
This analyzers help finding possible panic on httpd.go.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -6,18 +6,21 @@ module git.sr.ht/~shulhan/rescached go 1.23.4 require ( - git.sr.ht/~shulhan/ciigo v0.15.0 - git.sr.ht/~shulhan/pakakeh.go v0.59.0 + git.sr.ht/~shulhan/ciigo v0.15.1 + git.sr.ht/~shulhan/pakakeh.go v0.60.0 ) require ( - git.sr.ht/~shulhan/asciidoctor-go v0.6.2-0.20250106025231-ed20fc1c23e8 // indirect + git.sr.ht/~shulhan/asciidoctor-go v0.6.2 // indirect github.com/yuin/goldmark v1.7.8 // indirect github.com/yuin/goldmark-meta v1.1.0 // indirect - golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect + golang.org/x/exp v0.0.0-20250207012021-f9890c6ad9f3 // indirect + golang.org/x/mod v0.22.0 // indirect golang.org/x/net v0.34.0 // indirect - golang.org/x/sys v0.29.0 // indirect + golang.org/x/sync v0.10.0 // indirect + golang.org/x/sys v0.30.0 // indirect + golang.org/x/tools v0.29.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) -// replace git.sr.ht/~shulhan/pakakeh.go => ../pakakeh.go +//replace git.sr.ht/~shulhan/pakakeh.go => ../pakakeh.go |
