Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.3.0 to 1.6.0. - [Release notes](https://github.com/google/uuid/releases) - [Changelog](https://github.com/google/uuid/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/uuid/compare/v1.3.0...v1.6.0) --- updated-dependencies: - dependency-name: github.com/google/uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
2.3 KiB
Modula-2
58 lines
2.3 KiB
Modula-2
module ovpn-admin
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/gobuffalo/packr/v2 v2.8.3
|
|
github.com/google/uuid v1.6.0
|
|
github.com/prometheus/client_golang v1.21.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
|
k8s.io/api v0.23.1
|
|
k8s.io/apimachinery v0.23.1
|
|
k8s.io/client-go v0.23.1
|
|
)
|
|
|
|
require (
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-logr/logr v1.2.2 // indirect
|
|
github.com/gobuffalo/logger v1.0.6 // indirect
|
|
github.com/gobuffalo/packd v1.0.1 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/karrick/godirwalk v1.16.1 // indirect
|
|
github.com/klauspost/compress v1.17.11 // indirect
|
|
github.com/markbates/errx v1.1.0 // indirect
|
|
github.com/markbates/oncer v1.0.0 // indirect
|
|
github.com/markbates/safe v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
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/net v0.33.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
|
|
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
|
|
google.golang.org/protobuf v1.36.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/klog/v2 v2.40.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20220114203427-a0453230fd26 // indirect
|
|
k8s.io/utils v0.0.0-20211208161948-7d6a63dca704 // indirect
|
|
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|