677fa94d30
This means we can use generics and various other things. I didn't use any of them yet, this is just bumping the numbers. I added tests for 1.20, and fixed one small bug, I think caused by `go/packages` changes therein. And I bumped the golangci-lint version too while I was in the area. Fixes #256, fixes #257. I have: - [x] Written a clear PR title and description (above) - [x] Signed the [Khan Academy CLA](https://www.khanacademy.org/r/cla) - [x] Added tests covering my changes, if applicable - [x] Included a link to the issue fixed, if applicable - [x] Included documentation, for new features - [x] Added an entry to the changelog
28 lines
909 B
Modula-2
28 lines
909 B
Modula-2
module github.com/Khan/genqlient
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/99designs/gqlgen v0.17.2
|
|
github.com/alexflint/go-arg v1.4.2
|
|
github.com/bradleyjkemp/cupaloy/v2 v2.6.0
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/vektah/gqlparser/v2 v2.4.5
|
|
golang.org/x/tools v0.1.10
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/agnivade/levenshtein v1.1.1 // indirect
|
|
github.com/alexflint/go-scalar v1.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.2.3 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
|
|
golang.org/x/sys v0.1.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|