diff --git a/go.mod b/go.mod index 4636c423d..55deed372 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,6 @@ require ( github.com/gorilla/mux v1.8.1 github.com/mitchellh/go-homedir v1.1.0 github.com/pkg/errors v0.9.1 - github.com/prometheus/client_golang v1.20.4 github.com/prometheus/client_model v0.6.1 github.com/prometheus/common v0.61.0 github.com/sirupsen/logrus v1.9.3 @@ -24,7 +23,6 @@ require ( go.opentelemetry.io/otel/sdk v1.28.0 go.opentelemetry.io/otel/trace v1.28.0 golang.org/x/sync v0.10.0 - golang.org/x/sys v0.28.0 golang.org/x/time v0.5.0 google.golang.org/protobuf v1.35.2 gotest.tools v2.2.0+incompatible @@ -82,6 +80,7 @@ require ( github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/prometheus/client_golang v1.20.4 // indirect github.com/prometheus/procfs v0.15.1 // indirect github.com/stoewer/go-strcase v1.2.0 // indirect github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect @@ -101,6 +100,7 @@ require ( golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect golang.org/x/net v0.32.0 // indirect golang.org/x/oauth2 v0.24.0 // indirect + golang.org/x/sys v0.28.0 // indirect golang.org/x/term v0.27.0 // indirect golang.org/x/text v0.21.0 // indirect google.golang.org/api v0.30.0 // indirect diff --git a/internal/lockdeps/lockdeps.go b/internal/lockdeps/lockdeps.go deleted file mode 100644 index 86d3f3130..000000000 --- a/internal/lockdeps/lockdeps.go +++ /dev/null @@ -1,9 +0,0 @@ -package lockdeps - -import ( - // TODO(Sargun): Remove in Go1.13 - // This is a dep that `go mod tidy` keeps removing, because it's a transitive dep that's pulled in via a test - // See: https://github.com/golang/go/issues/29702 - _ "github.com/prometheus/client_golang/prometheus" - _ "golang.org/x/sys/unix" -)