mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
* Refactor Go files 1. replace deprecated ioutil functions (ioutil is deprecated since Go 1.16) 2. fix variable names that collide with imported package name 3. fix typos Also update Go version specified by Go modules to ensure a Go version is used in which ioutil is deprecated and replacement functions are available in os and io packages. Signed-off-by: Tommy TIAN <xtianae@connect.ust.hk> Co-authored-by: Mark S. Lewis <mark_lewis@uk.ibm.com> * Specify go 1.18 instead of go 1.19 in go.mod files Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com> Signed-off-by: Tommy TIAN <xtianae@connect.ust.hk> Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com> Co-authored-by: Tommy TIAN <xtianae@connect.ust.hk>
50 lines
2.4 KiB
Modula-2
50 lines
2.4 KiB
Modula-2
module github.com/hyperledger/fabric-samples/high-throughput/application-go
|
|
|
|
go 1.18
|
|
|
|
require github.com/hyperledger/fabric-sdk-go v1.0.0
|
|
|
|
require (
|
|
github.com/Knetic/govaluate v3.0.0+incompatible // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cloudflare/cfssl v1.4.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fsnotify/fsnotify v1.4.7 // indirect
|
|
github.com/go-kit/kit v0.8.0 // indirect
|
|
github.com/go-logfmt/logfmt v0.4.0 // indirect
|
|
github.com/golang/mock v1.4.3 // indirect
|
|
github.com/golang/protobuf v1.3.3 // indirect
|
|
github.com/google/certificate-transparency-go v1.0.21 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/hyperledger/fabric-config v0.0.5 // indirect
|
|
github.com/hyperledger/fabric-lib-go v1.0.0 // indirect
|
|
github.com/hyperledger/fabric-protos-go v0.0.0-20200707132912-fee30f3ccd23 // indirect
|
|
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect
|
|
github.com/magiconair/properties v1.8.1 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.3.2 // indirect
|
|
github.com/pelletier/go-toml v1.8.0 // indirect
|
|
github.com/pkg/errors v0.8.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_golang v1.1.0 // indirect
|
|
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
|
|
github.com/prometheus/common v0.6.0 // indirect
|
|
github.com/prometheus/procfs v0.0.3 // indirect
|
|
github.com/spf13/afero v1.3.1 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/spf13/viper v1.1.1 // indirect
|
|
github.com/stretchr/testify v1.5.1 // indirect
|
|
github.com/weppos/publicsuffix-go v0.5.0 // indirect
|
|
github.com/zmap/zcrypto v0.0.0-20190729165852-9051775e6a2e // indirect
|
|
github.com/zmap/zlint v0.0.0-20190806154020-fd021b4cfbeb // indirect
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
|
|
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
|
|
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
|
|
google.golang.org/grpc v1.29.1 // indirect
|
|
gopkg.in/yaml.v2 v2.3.0 // indirect
|
|
)
|