mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-08 23:41:17 +02:00
`go mod tidy -compat=1.17`. Closes #4426. Closes #4427. Closes #4428. Closes #4429. Closes #4430. Closes #4431. Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@talos-systems.com>
19 lines
583 B
Modula-2
19 lines
583 B
Modula-2
module github.com/talos-systems/talos-hack-docgen
|
|
|
|
go 1.17
|
|
|
|
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
|
|
// which are then encoded as a valid YAML blocks with proper indentiation
|
|
replace gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20210315173758-8fb30b8e5a5b
|
|
|
|
require (
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
mvdan.cc/gofumpt v0.1.1
|
|
)
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.5.4 // indirect
|
|
golang.org/x/mod v0.4.0 // indirect
|
|
golang.org/x/tools v0.0.0-20210101214203-2dba1e4ea05c // indirect
|
|
)
|