2021-08-17 13:06:32 +03:00
|
|
|
module github.com/wader/fq
|
2020-06-08 03:29:51 +03:00
|
|
|
|
2022-05-20 16:10:41 +03:00
|
|
|
go 1.18
|
2020-06-08 03:29:51 +03:00
|
|
|
|
2022-02-13 12:35:32 +03:00
|
|
|
require (
|
|
|
|
// fork of github.com/itchyny/gojq, see github.com/wader/gojq fq branch
|
2022-05-23 22:31:28 +03:00
|
|
|
github.com/wader/gojq v0.12.1-0.20220523192338-6ad601ba3ad4
|
2022-02-13 12:35:32 +03:00
|
|
|
// fork of github.com/chzyer/readline, see github.com/wader/readline fq branch
|
2022-05-19 17:56:22 +03:00
|
|
|
github.com/wader/readline v0.0.0-20220519145246-cc6b808370a7
|
2022-02-13 12:35:32 +03:00
|
|
|
)
|
|
|
|
|
2020-06-08 03:29:51 +03:00
|
|
|
require (
|
2022-03-03 01:40:33 +03:00
|
|
|
// bump: gomod-golang-snappy /github.com\/golang\/snappy v(.*)/ https://github.com/golang/snappy.git|^0
|
|
|
|
// bump: gomod-golang-snappy command go get -d github.com/golang/snappy@v$LATEST && go mod tidy
|
|
|
|
// bump: gomod-golang-snappy link "Source diff $CURRENT..$LATEST" https://github.com/golang/snappy/compare/v$CURRENT..v$LATEST
|
|
|
|
github.com/golang/snappy v0.0.4
|
2021-11-24 23:20:46 +03:00
|
|
|
// bump: gomod-gopacket /github\.com\/google\/gopacket v(.*)/ https://github.com/google/gopacket.git|^1
|
|
|
|
// bump: gomod-gopacket command go get -d github.com/google/gopacket@v$LATEST && go mod tidy
|
2021-12-02 19:21:00 +03:00
|
|
|
// bump: gomod-gopacket link "Release notes" https://github.com/google/gopacket/releases/tag/v$LATEST
|
2021-11-24 23:20:46 +03:00
|
|
|
github.com/google/gopacket v1.1.19
|
2021-12-09 19:15:21 +03:00
|
|
|
// bump: gomod-copystructure /github.com\/mitchellh\/copystructure v(.*)/ https://github.com/mitchellh/copystructure.git|^1
|
|
|
|
// bump: gomod-copystructure command go get -d github.com/mitchellh/copystructure@v$LATEST && go mod tidy
|
|
|
|
// bump: gomod-copystructure link "CHANGELOG" https://github.com/mitchellh/copystructure/blob/master/CHANGELOG.md
|
|
|
|
github.com/mitchellh/copystructure v1.2.0
|
2021-11-24 23:20:46 +03:00
|
|
|
// bump: gomod-mapstructure /github.com\/mitchellh\/mapstructure v(.*)/ https://github.com/mitchellh/mapstructure.git|^1
|
2021-10-05 13:18:47 +03:00
|
|
|
// bump: gomod-mapstructure command go get -d github.com/mitchellh/mapstructure@v$LATEST && go mod tidy
|
2021-12-02 19:21:00 +03:00
|
|
|
// bump: gomod-mapstructure link "CHANGELOG" https://github.com/mitchellh/mapstructure/blob/master/CHANGELOG.md
|
2022-04-21 19:08:54 +03:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2021-11-24 23:20:46 +03:00
|
|
|
// bump: gomod-go-difflib /github.com\/pmezard\/go-difflib v(.*)/ https://github.com/pmezard/go-difflib.git|^1
|
2021-10-05 13:18:47 +03:00
|
|
|
// bump: gomod-go-difflib command go get -d github.com/pmezard/go-difflib@v$LATEST && go mod tidy
|
2021-12-02 19:21:00 +03:00
|
|
|
// bump: gomod-go-difflib link "Source diff $CURRENT..$LATEST" https://github.com/pmezard/go-difflib/compare/v$CURRENT..v$LATEST
|
2020-06-08 03:29:51 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.0
|
2021-11-24 23:20:46 +03:00
|
|
|
// bump: gomod-golang/text /golang\.org\/x\/text v(.*)/ https://github.com/golang/text.git|^0
|
|
|
|
// bump: gomod-golang/text command go get -d golang.org/x/text@v$LATEST && go mod tidy
|
2021-12-02 19:21:00 +03:00
|
|
|
// bump: gomod-golang/text link "Source diff $CURRENT..$LATEST" https://github.com/golang/text/compare/v$CURRENT..v$LATEST
|
2021-11-24 23:20:46 +03:00
|
|
|
golang.org/x/text v0.3.7
|
|
|
|
)
|
2020-06-08 03:29:51 +03:00
|
|
|
|
2021-08-20 16:10:16 +03:00
|
|
|
require (
|
|
|
|
github.com/itchyny/timefmt-go v0.1.3 // indirect
|
2021-12-09 19:15:21 +03:00
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
2022-03-03 01:40:33 +03:00
|
|
|
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
|
2021-08-20 16:10:16 +03:00
|
|
|
)
|