2020-10-27 05:45:16 +00:00
|
|
|
module github.com/mikefarah/yq/v4
|
2019-09-03 05:52:55 +00:00
|
|
|
|
|
|
|
require (
|
2023-02-28 02:28:21 +00:00
|
|
|
github.com/a8m/envsubst v1.4.2
|
2023-12-11 22:55:33 +00:00
|
|
|
github.com/alecthomas/participle/v2 v2.1.1
|
2024-02-24 02:45:17 +00:00
|
|
|
github.com/alecthomas/repr v0.4.0
|
2022-10-08 02:12:12 +00:00
|
|
|
github.com/dimchansky/utfbom v1.1.1
|
2023-11-14 02:55:55 +00:00
|
|
|
github.com/elliotchance/orderedmap v1.5.1
|
2023-11-09 22:15:04 +00:00
|
|
|
github.com/fatih/color v1.16.0
|
2023-03-23 21:35:56 +00:00
|
|
|
github.com/goccy/go-json v0.10.2
|
2024-02-01 04:15:28 +00:00
|
|
|
github.com/goccy/go-yaml v1.11.3
|
2023-08-29 23:27:31 +00:00
|
|
|
github.com/jinzhu/copier v0.4.0
|
2022-12-15 08:35:57 +00:00
|
|
|
github.com/magiconair/properties v1.8.7
|
2024-05-12 01:53:40 +00:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.2
|
2022-01-15 00:57:59 +00:00
|
|
|
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
|
2023-11-09 22:14:49 +00:00
|
|
|
github.com/spf13/cobra v1.8.0
|
2022-11-10 08:21:18 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2023-12-11 22:55:24 +00:00
|
|
|
github.com/yuin/gopher-lua v1.1.1
|
2024-04-14 08:51:28 +00:00
|
|
|
golang.org/x/net v0.24.0
|
2024-05-12 01:53:02 +00:00
|
|
|
golang.org/x/text v0.15.0
|
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 (
|
2023-04-11 01:32:58 +00:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2023-01-29 23:22:42 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2023-11-09 22:15:04 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2024-04-14 08:51:28 +00:00
|
|
|
golang.org/x/sys v0.19.0 // indirect
|
2023-10-18 01:11:53 +00:00
|
|
|
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
|
2021-10-15 00:43:48 +00:00
|
|
|
)
|
|
|
|
|
2023-10-23 09:04:10 +00:00
|
|
|
go 1.21
|