Skip to content

Commit

Permalink
updated tools.go to allow go mod tidy to run successfully
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyAdcockAND committed Mar 3, 2025
1 parent 21da49f commit ae48f51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
9 changes: 1 addition & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@ go 1.23.0

toolchain go1.23.4

exclude (
// Vulnerability in dependency of github.com/ONSdigital/dp-topic-api v0.26.0
golang.org/x/crypto v0.32.0
// Vulnerability in dependency of golang.org/x/net v0.35.0
golang.org/x/crypto v0.33.0

)

require (
github.com/ONSdigital/dp-api-clients-go/v2 v2.263.0
github.com/ONSdigital/dp-cache v0.4.0
Expand Down Expand Up @@ -74,6 +66,7 @@ require (
go.opentelemetry.io/otel/trace v1.34.0 // indirect
go.opentelemetry.io/proto/otlp v1.2.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.35.0
golang.org/x/net v0.35.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN8
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.35.0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs=
golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ=
golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
Expand Down
1 change: 1 addition & 0 deletions tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ package main
import (
_ "github.com/golang/glog"
_ "github.com/kevinburke/go-bindata"
_ "golang.org/x/crypto/hkdf"
)

0 comments on commit ae48f51

Please sign in to comment.