2
0
mirror of https://github.com/guggero/chantools synced 2024-11-07 03:20:43 +00:00
chantools/go.mod

32 lines
1.4 KiB
Modula-2
Raw Normal View History

2019-11-24 11:32:59 +00:00
module github.com/guggero/chantools
2019-11-09 14:41:31 +00:00
2019-11-24 11:32:59 +00:00
require (
2019-12-28 15:04:36 +00:00
git.schwanenlied.me/yawning/bsaes.git v0.0.0-20190320102049-26d1add596b6 // indirect
github.com/Yawning/aez v0.0.0-20180408160647-ec7426b44926 // indirect
2019-11-24 11:32:59 +00:00
github.com/btcsuite/btcd v0.20.1-beta
2020-03-03 21:13:20 +00:00
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
2019-12-28 15:04:36 +00:00
github.com/btcsuite/btcutil v0.0.0-20191219182022-e17c9730c422
github.com/btcsuite/btcutil/psbt v0.0.0-00010101000000-000000000000
2020-03-07 10:27:04 +00:00
github.com/btcsuite/btcwallet v0.11.1-0.20200219004649-ae9416ad7623
github.com/btcsuite/btcwallet/walletdb v1.2.0
2020-03-24 19:05:34 +00:00
github.com/coreos/bbolt v1.3.3
2019-11-24 11:32:59 +00:00
github.com/davecgh/go-spew v1.1.1
2020-01-04 22:34:38 +00:00
github.com/golang/protobuf v1.3.2 // indirect
2019-11-24 11:32:59 +00:00
github.com/jessevdk/go-flags v1.4.0
2019-12-28 15:04:36 +00:00
github.com/lightningnetwork/lnd v0.8.0-beta-rc3.0.20191224233846-f289a39c1a00
github.com/ltcsuite/ltcd v0.0.0-20191228044241-92166e412499 // indirect
github.com/miekg/dns v1.1.26 // indirect
golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d
2019-12-28 15:04:36 +00:00
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
golang.org/x/sys v0.0.0-20191224085550-c709ea063b76 // indirect
2020-01-04 22:34:38 +00:00
gopkg.in/yaml.v2 v2.2.3 // indirect
2019-11-24 11:32:59 +00:00
)
2019-11-09 14:41:31 +00:00
replace github.com/lightningnetwork/lnd => github.com/guggero/lnd v0.9.0-beta-rc4.0.20200826102054-8c9171307182
2020-03-07 10:27:04 +00:00
replace github.com/btcsuite/btcutil => github.com/btcsuite/btcutil v1.0.2
replace github.com/btcsuite/btcutil/psbt => github.com/btcsuite/btcutil/psbt v1.0.2
2019-11-09 14:41:31 +00:00
go 1.13