go.mod 786 B

1234567891011121314151617181920212223242526
  1. module github.com/lightningnetwork/lnd/tor
  2. require (
  3. github.com/btcsuite/btcd v0.23.3
  4. github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
  5. github.com/miekg/dns v1.1.43
  6. github.com/stretchr/testify v1.8.2
  7. golang.org/x/net v0.17.0
  8. )
  9. require (
  10. github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect
  11. github.com/davecgh/go-spew v1.1.1 // indirect
  12. github.com/kr/pretty v0.3.0 // indirect
  13. github.com/pmezard/go-difflib v1.0.0 // indirect
  14. github.com/rogpeppe/go-internal v1.9.0 // indirect
  15. github.com/stretchr/objx v0.5.0 // indirect
  16. golang.org/x/crypto v0.14.0 // indirect
  17. golang.org/x/sync v0.2.0 // indirect
  18. golang.org/x/sys v0.13.0 // indirect
  19. gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
  20. gopkg.in/yaml.v3 v3.0.1 // indirect
  21. )
  22. go 1.19