Files
kind/go.mod
Benjamin Elder 1e21827948 eliminate yaml.v3
not convinced these were necessary, users can patch arbitrary yaml in anyhow, I don't think there's a realistic threat model resolved by safetext/yamltemplate

further, the safetext repo doesn't seem to be responsively maintained, last commit 9 months ago, and the small number of issues are going unresponded (4 open, 0 closed, some multiple years old)
2025-04-24 22:00:51 -07:00

36 lines
1019 B
Modula-2

module sigs.k8s.io/kind
// 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
require (
al.essio.dev/pkg/shellescape v1.5.1
github.com/BurntSushi/toml v1.4.0
github.com/evanphx/json-patch/v5 v5.6.0
github.com/mattn/go-isatty v0.0.20
github.com/pelletier/go-toml v1.9.5
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
sigs.k8s.io/yaml v1.4.0
)
// 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
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/text v0.2.0 // indirect
golang.org/x/sys v0.6.0 // indirect
)