-
Notifications
You must be signed in to change notification settings - Fork 180
/
go.mod
107 lines (104 loc) · 4.34 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module github.com/onflow/flow-go
go 1.16
require (
cloud.google.com/go/storage v1.16.0
github.com/antihax/optional v1.0.0
github.com/aws/aws-sdk-go-v2/config v1.8.0
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.5.1
github.com/aws/aws-sdk-go-v2/service/s3 v1.15.0
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/bsipos/thist v1.0.0
github.com/btcsuite/btcd v0.22.0-beta
github.com/dapperlabs/testingdock v0.4.4
github.com/davecgh/go-spew v1.1.1
github.com/dgraph-io/badger/v2 v2.2007.3
github.com/ef-ds/deque v1.0.4
github.com/ethereum/go-ethereum v1.9.13
github.com/fxamacker/cbor/v2 v2.3.1-0.20211029162100-5d5d7c3edd41
github.com/gammazero/workerpool v1.1.2
github.com/gogo/protobuf v1.3.2
github.com/golang/mock v1.6.0
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.6
github.com/google/uuid v1.3.0
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/go-grpc-middleware/providers/zerolog/v2 v2.0.0-rc.2
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-20200501113911-9a95f0fdbfea
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.6.0
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/golang-lru v0.5.4
github.com/improbable-eng/grpc-web v0.12.0
github.com/ipfs/go-bitswap v0.5.0
github.com/ipfs/go-block-format v0.0.3
github.com/ipfs/go-blockservice v0.2.0
github.com/ipfs/go-cid v0.1.0
github.com/ipfs/go-datastore v0.5.1
github.com/ipfs/go-ds-badger2 v0.1.3
github.com/ipfs/go-ipfs-blockstore v0.2.0
github.com/ipfs/go-ipfs-provider v0.7.0
github.com/ipfs/go-log v1.0.5
github.com/ipld/go-ipld-prime v0.14.1 // indirect
github.com/libp2p/go-addr-util v0.1.0
github.com/libp2p/go-libp2p v0.16.0
github.com/libp2p/go-libp2p-core v0.11.0
github.com/libp2p/go-libp2p-discovery v0.6.0
github.com/libp2p/go-libp2p-kad-dht v0.15.0
github.com/libp2p/go-libp2p-pubsub v0.6.0
github.com/libp2p/go-libp2p-swarm v0.8.0
github.com/libp2p/go-libp2p-tls v0.3.1
github.com/libp2p/go-libp2p-transport-upgrader v0.5.0
github.com/libp2p/go-tcp-transport v0.4.0
github.com/m4ksio/wal v1.0.0
github.com/multiformats/go-multiaddr v0.4.1
github.com/multiformats/go-multiaddr-dns v0.3.1
github.com/multiformats/go-multihash v0.1.0
github.com/onflow/atree v0.1.1
github.com/onflow/cadence v0.21.0
github.com/onflow/flow v0.2.3-0.20220207221328-d1ffd1c3053e
github.com/onflow/flow-core-contracts/lib/go/contracts v0.10.1
github.com/onflow/flow-core-contracts/lib/go/templates v0.10.1
github.com/onflow/flow-emulator v0.20.3
github.com/onflow/flow-go-sdk v0.24.0
github.com/onflow/flow-go/crypto v0.24.2
github.com/onflow/flow/protobuf/go/flow v0.2.3
github.com/opentracing/opentracing-go v1.2.0
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/psiemens/sconfig v0.1.0 // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/rs/cors v1.8.0
github.com/rs/zerolog v1.19.0
github.com/schollz/progressbar/v3 v3.8.3
github.com/sethvargo/go-retry v0.1.0
github.com/smartystreets/assertions v1.0.0 // indirect
github.com/spf13/afero v1.8.0 // indirect
github.com/spf13/cobra v1.3.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.10.1
github.com/stretchr/testify v1.7.0
github.com/uber/jaeger-client-go v2.29.1+incompatible
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible
github.com/vmihailenco/msgpack/v4 v4.3.11
go.uber.org/atomic v1.9.0
go.uber.org/multierr v1.7.0
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6
golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
google.golang.org/api v0.63.0
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa
google.golang.org/grpc v1.43.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
google.golang.org/protobuf v1.27.1
gotest.tools v2.2.0+incompatible
lukechampine.com/blake3 v1.1.7 // indirect
pgregory.net/rapid v0.4.7
)
replace mellium.im/sasl => github.com/mellium/sasl v0.2.1