This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 346
/
go.mod
59 lines (57 loc) · 2.56 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
module github.com/hyperledger/burrow
go 1.16
require (
github.com/BurntSushi/toml v0.3.1
github.com/OneOfOne/xxhash v1.2.8
github.com/alecthomas/jsonschema v0.0.0-20201129101101-7b852d451add
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
github.com/btcsuite/btcd v0.21.0-beta
github.com/cep21/xdgbasedir v0.0.0-20170329171747-21470bfc93b9
github.com/cosmos/iavl v0.15.3
github.com/eapache/channels v1.1.0
github.com/elgs/gojq v0.0.0-20201120033525-b5293fef2759
github.com/elgs/gosplitargs v0.0.0-20161028071935-a491c5eeb3c8 // indirect
github.com/fatih/color v1.10.0
github.com/go-interpreter/wagon v0.6.0
github.com/go-kit/kit v0.10.0
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.4.3
github.com/hashicorp/golang-lru v0.5.4
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c
github.com/iancoleman/strcase v0.1.3
github.com/imdario/mergo v0.3.11
github.com/jawher/mow.cli v1.2.0
github.com/jmoiron/sqlx v1.3.1
github.com/lib/pq v1.9.0
github.com/mattn/go-sqlite3 v1.14.6
github.com/monax/relic v2.0.0+incompatible
github.com/perlin-network/life v0.0.0-20191203030451-05c0e0f7eaea
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.15.0
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/spf13/viper v1.7.1
github.com/streadway/simpleuuid v0.0.0-20130420165545-6617b501e485
github.com/stretchr/testify v1.7.0
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca
github.com/tendermint/tendermint v0.34.3
github.com/tendermint/tm-db v0.6.3
github.com/test-go/testify v1.1.4
github.com/tmthrgd/atomics v0.0.0-20190904060638-dc7a5fcc7e0d // indirect
github.com/tmthrgd/go-bitset v0.0.0-20190904054048-394d9a556c05
github.com/tmthrgd/go-bitwise v0.0.0-20190904053232-1430ee983fca // indirect
github.com/tmthrgd/go-byte-test v0.0.0-20190904060354-2794345b9929 // indirect
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc
github.com/tmthrgd/go-memset v0.0.0-20190904060434-6fb7a21f88f1 // indirect
github.com/tmthrgd/go-popcount v0.0.0-20190904054823-afb1ace8b04f // indirect
github.com/xeipuuv/gojsonschema v1.2.0
github.com/xlab/treeprint v1.0.0
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
google.golang.org/grpc v1.35.0
google.golang.org/protobuf v1.25.0
gopkg.in/yaml.v2 v2.4.0
)