talos/hack/docgen/go.mod
Andrey Smirnov 018e7f5871
chore: bump dependencies
Linux: 6.1.42
containerd: 1.6.22
Flannel: 0.22.1

And some other Go module bumps, new pkgs/tools/extras.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
2023-07-31 22:33:22 +04:00

28 lines
928 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-20220527175918-f17b0f05cf2c
require (
github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12
github.com/iancoleman/orderedmap v0.3.0
github.com/invopop/jsonschema v0.7.0
github.com/microcosm-cc/bluemonday v1.0.25
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
github.com/siderolabs/gen v0.4.5
gopkg.in/yaml.v3 v3.0.1
mvdan.cc/gofumpt v0.5.0
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/gorilla/css v1.0.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/tools v0.10.0 // indirect
)