aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2025-04-05 21:07:40 -0400
committerXe Iaso <me@xeiaso.net>2025-04-05 21:07:40 -0400
commit7e1b2817efa2c107254ca507596a47a44096a7dd (patch)
tree57b54b56b0651d6f2a203f40b7338e4437e2d913 /go.mod
parent878b37178d5b55046871ce53371eec5efb52cc78 (diff)
downloadanubis-Xe/fix-deps-documentation.tar.xz
anubis-Xe/fix-deps-documentation.zip
Makefile: fix subtle logic bugXe/fix-deps-documentation
Closes #226 Makefile dependencies are backwards, apparently. Also add staticcheck as a `go tool` dependency.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod6
1 files changed, 5 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 5bb3cca..91d2545 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/TecharoHQ/anubis
-go 1.24.1
+go 1.24.2
require (
github.com/a-h/templ v0.3.833
@@ -13,6 +13,7 @@ require (
)
require (
+ github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
github.com/PuerkitoBio/goquery v1.10.1 // indirect
github.com/a-h/parse v0.0.0-20250122154542-74294addb73e // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
@@ -39,15 +40,18 @@ require (
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.62.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
+ golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/mod v0.24.0 // indirect
golang.org/x/net v0.37.0 // indirect
golang.org/x/sync v0.12.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/tools v0.31.0 // indirect
google.golang.org/protobuf v1.36.4 // indirect
+ honnef.co/go/tools v0.6.1 // indirect
)
tool (
github.com/a-h/templ/cmd/templ
golang.org/x/tools/cmd/stringer
+ honnef.co/go/tools/cmd/staticcheck
)