2020-10-27 05:45:16 +00:00
|
|
|
module github.com/mikefarah/yq/v4
|
2019-09-03 05:52:55 +00:00
|
|
|
|
|
|
|
require (
|
2022-01-27 05:21:31 +00:00
|
|
|
github.com/a8m/envsubst v1.3.0
|
2022-08-11 03:47:22 +00:00
|
|
|
github.com/alecthomas/participle/v2 v2.0.0-beta.5
|
2022-10-13 22:33:34 +00:00
|
|
|
github.com/alecthomas/repr v0.1.1
|
2022-10-08 02:12:12 +00:00
|
|
|
github.com/dimchansky/utfbom v1.1.1
|
2022-09-09 01:05:46 +00:00
|
|
|
github.com/elliotchance/orderedmap v1.5.0
|
2021-11-08 20:44:54 +00:00
|
|
|
github.com/fatih/color v1.13.0
|
2022-08-25 03:41:11 +00:00
|
|
|
github.com/goccy/go-json v0.9.11
|
2022-10-27 04:10:56 +00:00
|
|
|
github.com/goccy/go-yaml v1.9.6
|
2022-01-21 07:36:33 +00:00
|
|
|
github.com/jinzhu/copier v0.3.5
|
2022-02-24 21:58:01 +00:00
|
|
|
github.com/magiconair/properties v1.8.6
|
2022-01-15 00:57:59 +00:00
|
|
|
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
|
2022-10-17 04:15:19 +00:00
|
|
|
github.com/spf13/cobra v1.6.0
|
2022-07-13 01:12:15 +00:00
|
|
|
golang.org/x/net v0.0.0-20220708220712-1185a9018129
|
2019-09-03 05:52:55 +00:00
|
|
|
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
|
2022-05-28 03:32:35 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2019-09-03 05:52:55 +00:00
|
|
|
)
|
2019-10-30 21:18:09 +00:00
|
|
|
|
2021-10-15 00:43:48 +00:00
|
|
|
require (
|
2022-10-17 04:15:19 +00:00
|
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
2021-12-16 03:55:07 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
2021-11-08 20:44:54 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
2021-10-26 04:07:50 +00:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2022-07-13 01:12:15 +00:00
|
|
|
golang.org/x/sys v0.0.0-20220712014510-0a85c31ab51e // indirect
|
2021-12-21 04:02:07 +00:00
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2022-07-13 01:12:15 +00:00
|
|
|
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
|
2021-10-15 00:43:48 +00:00
|
|
|
)
|
|
|
|
|
2022-08-29 04:13:15 +00:00
|
|
|
go 1.19
|