2019-02-13 17:18:54 -08:00
|
|
|
module sigs.k8s.io/kind
|
|
|
|
|
|
2023-08-24 14:06:33 -07:00
|
|
|
// NOTE: This is the go language version, NOT the compiler version.
|
|
|
|
|
//
|
|
|
|
|
// This controls the *minimum* required go version and therefore available Go
|
|
|
|
|
// language features.
|
|
|
|
|
//
|
|
|
|
|
// See ./.go-version for the go compiler version used when building binaries
|
|
|
|
|
//
|
|
|
|
|
// https://go.dev/doc/modules/gomod-ref#go
|
|
|
|
|
go 1.17
|
2019-08-23 16:31:46 -07:00
|
|
|
|
2019-02-13 17:18:54 -08:00
|
|
|
require (
|
2025-01-07 11:41:07 -08:00
|
|
|
al.essio.dev/pkg/shellescape v1.5.1
|
2024-05-24 15:32:22 -05:00
|
|
|
github.com/BurntSushi/toml v1.4.0
|
2021-11-03 12:09:39 -07:00
|
|
|
github.com/evanphx/json-patch/v5 v5.6.0
|
2024-05-24 15:32:22 -05:00
|
|
|
github.com/mattn/go-isatty v0.0.20
|
|
|
|
|
github.com/pelletier/go-toml v1.9.5
|
2020-02-04 13:25:18 -08:00
|
|
|
github.com/pkg/errors v0.9.1
|
2024-05-24 15:32:22 -05:00
|
|
|
github.com/spf13/cobra v1.8.0
|
2019-11-05 17:59:00 -08:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2025-07-10 19:23:02 -04:00
|
|
|
go.yaml.in/yaml/v3 v3.0.4
|
2024-05-24 15:32:22 -05:00
|
|
|
sigs.k8s.io/yaml v1.4.0
|
2019-02-13 17:18:54 -08:00
|
|
|
)
|
2023-08-24 14:06:33 -07:00
|
|
|
|
2025-04-24 20:38:40 -07:00
|
|
|
// test-only transitive deps, these are used by sigs.k8s.io/yaml's tests
|
|
|
|
|
require (
|
|
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
|
|
|
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
|
|
|
|
|
)
|
|
|
|
|
|
2023-08-24 14:06:33 -07:00
|
|
|
require (
|
2024-05-24 15:32:22 -05:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2023-08-24 14:06:33 -07:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2024-05-24 15:32:22 -05:00
|
|
|
golang.org/x/sys v0.6.0 // indirect
|
2023-08-24 14:06:33 -07:00
|
|
|
)
|