-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgo.mod
38 lines (36 loc) · 1.47 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
module github.com/Oneledger/protocol
require (
github.com/Oneledger/toml v0.4.1
github.com/allegro/bigcache v1.2.1 // indirect
github.com/blockcypher/gobcy v1.3.1
github.com/btcsuite/btcd v0.20.1-beta
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d
github.com/cespare/cp v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/deckarep/golang-set v1.7.1 // indirect
github.com/ethereum/go-ethereum v1.10.8
github.com/go-kit/kit v0.10.0
github.com/google/go-cmp v0.5.4
github.com/google/uuid v1.1.5
github.com/kr/text v0.2.0 // indirect
github.com/magiconair/properties v1.8.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pkg/errors v0.9.1
github.com/powerman/rpc-codec v1.1.2
github.com/prometheus/tsdb v0.10.0 // indirect
github.com/rjeczalik/notify v0.9.2 // indirect
github.com/spf13/cobra v1.1.1
github.com/status-im/keycard-go v0.0.0-20190424133014-d95853db0f48 // indirect
github.com/stretchr/testify v1.7.0
github.com/syndtr/goleveldb v1.0.1-0.20210305035536-64b5b1c73954
github.com/tendermint/go-amino v0.14.1
github.com/tendermint/iavl v0.13.3
github.com/tendermint/tendermint v0.33.3
github.com/tendermint/tm-db v0.5.1
github.com/tyler-smith/go-bip39 v1.0.2 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
)
go 1.13