-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Go to 1.17 #257
Merged
Merged
Update Go to 1.17 #257
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,54 +1,96 @@ | ||
module github.com/flow-hydraulics/flow-wallet-api | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go/kms v1.1.0 | ||
github.com/aws/aws-sdk-go-v2 v1.13.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.13.0 | ||
github.com/aws/aws-sdk-go-v2/service/kms v1.14.0 | ||
github.com/btcsuite/btcd v0.22.0-beta // indirect | ||
github.com/caarlos0/env/v6 v6.9.1 | ||
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/envoyproxy/go-control-plane v0.10.1 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect | ||
github.com/ethereum/go-ethereum v1.10.12 // indirect | ||
github.com/felixge/httpsnoop v1.0.2 | ||
github.com/go-gormigrate/gormigrate/v2 v2.0.0 | ||
github.com/go-test/deep v1.0.8 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/gomodule/redigo v1.8.8 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/handlers v1.5.1 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/jackc/pgx/v4 v4.14.1 // indirect | ||
github.com/joho/godotenv v1.4.0 | ||
github.com/jpillora/backoff v1.0.0 | ||
github.com/lib/pq v1.10.4 | ||
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect | ||
github.com/mattn/go-sqlite3 v1.14.10 // indirect | ||
github.com/onflow/cadence v0.20.1 | ||
github.com/onflow/flow-go-sdk v0.24.0 | ||
github.com/onflow/flow/protobuf/go/flow v0.2.3 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/zeebo/blake3 v0.2.1 // indirect | ||
go.uber.org/goleak v1.1.12 | ||
go.uber.org/ratelimit v0.2.0 | ||
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce // indirect | ||
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 // indirect | ||
google.golang.org/api v0.60.0 // indirect | ||
google.golang.org/genproto v0.0.0-20220112215332-a9c7c0acf9f2 | ||
google.golang.org/grpc v1.43.0 | ||
google.golang.org/protobuf v1.27.1 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
gorm.io/datatypes v1.0.5 | ||
gorm.io/driver/mysql v1.2.3 | ||
gorm.io/driver/postgres v1.2.3 | ||
gorm.io/driver/sqlite v1.2.6 | ||
gorm.io/driver/sqlserver v1.2.1 // indirect | ||
gorm.io/gorm v1.22.5 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.97.0 // indirect | ||
github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.10.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.2.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.7.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.9.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.14.0 // indirect | ||
github.com/aws/smithy-go v1.10.0 // indirect | ||
github.com/btcsuite/btcd v0.22.0-beta // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 // indirect | ||
github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/envoyproxy/go-control-plane v0.10.1 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect | ||
github.com/ethereum/go-ethereum v1.10.12 // indirect | ||
github.com/fxamacker/cbor/v2 v2.2.1-0.20210927235116-3d6d5d1de29b // indirect | ||
github.com/fxamacker/circlehash v0.1.0 // indirect | ||
github.com/go-sql-driver/mysql v1.6.0 // indirect | ||
github.com/go-test/deep v1.0.8 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.10.1 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.2.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/pgtype v1.9.1 // indirect | ||
github.com/jackc/pgx/v4 v4.14.1 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.4 // indirect | ||
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect | ||
github.com/mattn/go-sqlite3 v1.14.10 // indirect | ||
github.com/onflow/atree v0.1.0-beta1.0.20211027184039-559ee654ece9 // indirect | ||
github.com/onflow/flow-go/crypto v0.21.3 // indirect | ||
github.com/onflow/flow/protobuf/go/flow v0.2.3 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
github.com/zeebo/blake3 v0.2.1 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce // indirect | ||
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/api v0.60.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
gorm.io/driver/sqlserver v1.2.1 // indirect | ||
) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After 1.17, now indirect modules are grouped by another
require
.https://golang.org/doc/go1.17#go-command