-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from traggo/test
Support building with go1.18
- Loading branch information
Showing
3 changed files
with
24 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,42 @@ | ||
module github.com/traggo/server | ||
|
||
require ( | ||
cloud.google.com/go v0.34.0 // indirect | ||
github.com/99designs/gqlgen v0.17.42 | ||
github.com/denisenkom/go-mssqldb v0.0.0-20181014144952-4e0d7dc8888f // indirect | ||
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect | ||
github.com/go-sql-driver/mysql v1.4.1 // indirect | ||
github.com/gofrs/uuid v3.1.0+incompatible // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/gorilla/mux v1.7.2 | ||
github.com/jinzhu/copier v0.0.0-20180308034124-7e38e58719c3 | ||
github.com/jinzhu/gorm v1.9.2 | ||
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect | ||
github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3 // indirect | ||
github.com/jmattheis/go-timemath v1.0.1 | ||
github.com/joho/godotenv v1.3.0 | ||
github.com/kelseyhightower/envconfig v1.3.0 | ||
github.com/lib/pq v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.0 | ||
github.com/mattn/go-sqlite3 v1.10.0 // indirect | ||
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 | ||
github.com/rs/zerolog v1.11.0 | ||
github.com/sosodev/duration v1.2.0 // indirect | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/vektah/gqlparser/v2 v2.5.10 | ||
golang.org/x/crypto v0.16.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.34.0 // indirect | ||
github.com/agnivade/levenshtein v1.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/denisenkom/go-mssqldb v0.0.0-20181014144952-4e0d7dc8888f // indirect | ||
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect | ||
github.com/go-sql-driver/mysql v1.4.1 // indirect | ||
github.com/gofrs/uuid v3.1.0+incompatible // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/hashicorp/golang-lru/v2 v2.0.3 // indirect | ||
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect | ||
github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3 // indirect | ||
github.com/lib/pq v1.0.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.10.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sosodev/duration v1.2.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
google.golang.org/appengine v1.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
go 1.16 | ||
go 1.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters