diff options
| author | Xe Iaso <me@xeiaso.net> | 2025-02-14 13:39:34 -0500 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2025-02-14 13:39:34 -0500 |
| commit | 1acc1602f2ff678c0e4bf49fa62345505ec0aa35 (patch) | |
| tree | d2eec95941c9cd0a53f6de89cfde44222aa55940 /go.mod | |
| parent | 17c44496aaa77e8d0a499db8c044cb42ab00086b (diff) | |
| download | x-1acc1602f2ff678c0e4bf49fa62345505ec0aa35.tar.xz x-1acc1602f2ff678c0e4bf49fa62345505ec0aa35.zip | |
cmd/anubis: enable DNSBL checking via dronebl
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -1,8 +1,6 @@ module within.website/x -go 1.23.3 - -toolchain go1.23.4 +go 1.24 require ( al.essio.dev/pkg/shellescape v1.5.1 @@ -69,13 +67,15 @@ require ( github.com/thoj/go-ircevent v0.0.0-20210723090443-73e444401d64 github.com/tmc/scp v0.0.0-20170824174625-f7b48647feef github.com/twitchtv/twirp v8.1.3+incompatible + github.com/whyrusleeping/cbor-gen v0.1.3-0.20240904181319-8dc02b38228c github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6 go.etcd.io/bbolt v1.4.0 go.jetpack.io/tyson v0.1.1 go4.org v0.0.0-20190313082347-94abd6928b1d - golang.org/x/crypto v0.32.0 + golang.org/x/crypto v0.33.0 golang.org/x/oauth2 v0.25.0 - golang.org/x/sync v0.10.0 + golang.org/x/sync v0.11.0 + golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 google.golang.org/grpc v1.70.0 gorm.io/gorm v1.25.12 gorm.io/plugin/prometheus v0.1.0 @@ -199,7 +199,6 @@ require ( github.com/valyala/fasthttp v1.58.0 // indirect github.com/valyala/fastjson v1.6.4 // indirect github.com/whyrusleeping/cbor v0.0.0-20171005072247-63513f603b11 // indirect - github.com/whyrusleeping/cbor-gen v0.1.3-0.20240904181319-8dc02b38228c // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b // indirect @@ -212,7 +211,6 @@ require ( go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect golang.org/x/arch v0.6.0 // indirect - golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect @@ -261,11 +259,13 @@ require ( github.com/sendgrid/rest v2.6.9+incompatible // indirect golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 golang.org/x/image v0.23.0 - golang.org/x/mod v0.22.0 // indirect - golang.org/x/net v0.34.0 - golang.org/x/sys v0.29.0 // indirect - golang.org/x/text v0.21.0 // indirect + golang.org/x/mod v0.23.0 // indirect + golang.org/x/net v0.35.0 + golang.org/x/sys v0.30.0 // indirect + golang.org/x/text v0.22.0 // indirect golang.org/x/time v0.5.0 - golang.org/x/tools v0.29.0 + golang.org/x/tools v0.30.0 google.golang.org/protobuf v1.36.4 ) + +tool golang.org/x/tools/cmd/stringer |
