btcd/go.mod
Dave Collins cf5c461d91
main: Switch to chaincfg/chainhash module.
This removes the chaincfg/chainhash package in favor of using the module
to resolve issues with the go dependency tooling due to a conflict
between the package and module of the same name.
2022-04-27 22:35:57 -05:00

24 lines
817 B
Modula-2

module github.com/btcsuite/btcd
require (
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
github.com/btcsuite/goleveldb v1.0.0
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
github.com/btcsuite/winsvc v1.0.0
github.com/davecgh/go-spew v1.1.1
github.com/decred/dcrd/lru v1.0.0
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/logrotate v1.0.0
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
)
require (
github.com/aead/siphash v1.0.1 // indirect
github.com/btcsuite/snappy-go v1.0.0 // indirect
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23 // indirect
)
go 1.17