talos/hack/docgen/go.mod
Noel Georgi 36a9a208ec
chore: bump deps
Bump deps

Signed-off-by: Noel Georgi <git@frezbo.dev>
2023-03-22 16:37:27 +05:30

28 lines
960 B
Modula-2

module github.com/siderolabs/talos-hack-docgen
go 1.20
// 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 (
github.com/gomarkdown/markdown v0.0.0-20230322041520-c84983bdbf2a
github.com/iancoleman/orderedmap v0.2.0
github.com/invopop/jsonschema v0.7.0
github.com/microcosm-cc/bluemonday v1.0.23
github.com/santhosh-tekuri/jsonschema/v5 v5.2.0
github.com/siderolabs/gen v0.4.3
gopkg.in/yaml.v3 v3.0.1
mvdan.cc/gofumpt v0.4.0
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/gorilla/css v1.0.0 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/tools v0.1.12 // indirect
)