mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
* Pin tool versions with hack/go.mod This change centralizes the tracking of versions for tools used for development and testing. This way, the tools and all their dependencies have their checksums stored in hack/go.sum, which improves supply chain security. * Workspace Sync & Tidy
37 lines
1.3 KiB
Modula-2
37 lines
1.3 KiB
Modula-2
module sigs.k8s.io/kustomize/cmd/config
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/go-errors/errors v1.4.2
|
|
github.com/spf13/cobra v1.8.0
|
|
github.com/stretchr/testify v1.8.4
|
|
gopkg.in/inf.v0 v0.9.1
|
|
sigs.k8s.io/kustomize/kyaml v0.16.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.6 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
|
github.com/go-openapi/swag v0.22.4 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/gnostic-models v0.6.8 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/sergi/go-diff v1.2.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/xlab/treeprint v1.2.0 // indirect
|
|
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
|
|
golang.org/x/sys v0.17.0 // indirect
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|
|
|
|
replace sigs.k8s.io/kustomize/kyaml => ../../kyaml
|