-
Notifications
You must be signed in to change notification settings - Fork 14
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 #77 from nspcc-dev/76-go-version
Update to Go 1.20 min
- Loading branch information
Showing
6 changed files
with
185 additions
and
142 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
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,74 +1,85 @@ | ||
module github.com/nspcc-dev/xk6-neofs | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.21.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.18.39 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.38.5 | ||
github.com/dop251/goja v0.0.0-20230828202809-3dbe69dd2b8e | ||
github.com/google/uuid v1.3.1 | ||
github.com/nspcc-dev/neo-go v0.102.0 | ||
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.11.0.20230912200451-c0eefd5bd81c | ||
github.com/nspcc-dev/tzhash v1.7.0 | ||
github.com/aws/aws-sdk-go-v2 v1.25.2 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.4 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.51.1 | ||
github.com/dop251/goja v0.0.0-20240220182346-e401ed450204 | ||
github.com/google/uuid v1.6.0 | ||
github.com/nspcc-dev/neo-go v0.105.1 | ||
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.11.0.20240227143538-fa430c25c67f | ||
github.com/nspcc-dev/tzhash v1.7.2 | ||
github.com/stretchr/testify v1.8.4 | ||
go.etcd.io/bbolt v1.3.7 | ||
go.k6.io/k6 v0.46.0 | ||
go.etcd.io/bbolt v1.3.9 | ||
go.k6.io/k6 v0.49.0 | ||
) | ||
|
||
require ( | ||
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20221202181307-76fa05c21b12 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.37 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.41 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.35 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.42 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.14 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.36 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.35 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.13.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.15.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.21.5 // indirect | ||
github.com/aws/smithy-go v1.14.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.15.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.20.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.28.1 // indirect | ||
github.com/aws/smithy-go v1.20.1 // indirect | ||
github.com/cenkalti/backoff/v4 v4.2.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect | ||
github.com/dlclark/regexp2 v1.10.0 // indirect | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.4-0.20211119122758-180fcef48034+incompatible // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/pprof v0.0.0-20230912144702-c363fe2c2ed8 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect | ||
github.com/hashicorp/golang-lru v1.0.2 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mr-tron/base58 v1.2.0 // indirect | ||
github.com/mstoykov/atlas v0.0.0-20220811071828-388f114305dd // indirect | ||
github.com/nspcc-dev/hrw v1.0.9 // indirect | ||
github.com/nspcc-dev/neofs-api-go/v2 v2.14.0 // indirect | ||
github.com/nspcc-dev/hrw/v2 v2.0.0-20231115095647-bf62f4ad0a43 // indirect | ||
github.com/nspcc-dev/neofs-api-go/v2 v2.14.1-0.20240213170208-cfca09b5acbe // indirect | ||
github.com/nspcc-dev/neofs-crypto v0.4.0 // indirect | ||
github.com/nspcc-dev/rfc6979 v0.2.0 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/onsi/gomega v1.20.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/spaolacci/murmur3 v1.1.0 // indirect | ||
github.com/spf13/afero v1.9.5 // indirect | ||
golang.org/x/crypto v0.17.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
github.com/twmb/murmur3 v1.1.8 // indirect | ||
go.opentelemetry.io/otel v1.21.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.21.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.21.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.21.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.0.0 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230911183012-2d3300fd4832 // indirect | ||
google.golang.org/grpc v1.58.3 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect | ||
google.golang.org/grpc v1.60.0 // indirect | ||
google.golang.org/protobuf v1.31.1-0.20231027082548-f4a6c1f6e5c1 // indirect | ||
gopkg.in/guregu/null.v3 v3.5.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.