github.com/btcsuite/btcd@v0.24.0/go.mod (about) 1 module github.com/btcsuite/btcd 2 3 require ( 4 github.com/btcsuite/btcd/btcec/v2 v2.1.3 5 github.com/btcsuite/btcd/btcutil v1.1.5 6 github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 7 github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f 8 github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd 9 github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 10 github.com/btcsuite/winsvc v1.0.0 11 github.com/davecgh/go-spew v1.1.1 12 github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 13 github.com/decred/dcrd/lru v1.0.0 14 github.com/gorilla/websocket v1.5.0 15 github.com/jessevdk/go-flags v1.4.0 16 github.com/jrick/logrotate v1.0.0 17 github.com/stretchr/testify v1.7.0 18 github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 19 golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 20 golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed 21 ) 22 23 require ( 24 github.com/aead/siphash v1.0.1 // indirect 25 github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect 26 github.com/golang/snappy v0.0.4 // indirect 27 github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23 // indirect 28 github.com/pmezard/go-difflib v1.0.0 // indirect 29 gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect 30 ) 31 32 // The retract statements below fixes an accidental push of the tags of a btcd 33 // fork. 34 retract ( 35 v0.18.1 36 v0.18.0 37 v0.17.1 38 v0.17.0 39 v0.16.5 40 v0.16.4 41 v0.16.3 42 v0.16.2 43 v0.16.1 44 v0.16.0 45 46 v0.15.2 47 v0.15.1 48 v0.15.0 49 50 v0.14.7 51 v0.14.6 52 v0.14.6 53 v0.14.5 54 v0.14.4 55 v0.14.3 56 v0.14.2 57 v0.14.1 58 59 v0.14.0 60 v0.13.0-beta2 61 v0.13.0-beta 62 ) 63 64 go 1.17