2019-03-06 23:29:44 +00:00
|
|
|
module github.com/lightninglabs/loop
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
require (
|
2021-06-18 00:16:29 +00:00
|
|
|
github.com/btcsuite/btcd v0.21.0-beta.0.20210513141527-ee5896bad5be
|
2019-03-06 20:13:50 +00:00
|
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
2021-06-18 00:16:29 +00:00
|
|
|
github.com/btcsuite/btcutil v1.0.3-0.20210527170813-e2ba6805a890
|
2021-05-17 10:18:00 +00:00
|
|
|
github.com/btcsuite/btcwallet/wtxmgr v1.3.0
|
2019-09-14 12:38:00 +00:00
|
|
|
github.com/coreos/bbolt v1.3.3
|
2019-03-06 20:13:50 +00:00
|
|
|
github.com/fortytw2/leaktest v1.3.0
|
2021-05-17 10:18:00 +00:00
|
|
|
github.com/golang/protobuf v1.4.3
|
2020-06-15 09:29:43 +00:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway v1.14.3
|
2019-03-16 00:22:07 +00:00
|
|
|
github.com/jessevdk/go-flags v1.4.0
|
2021-04-28 07:56:15 +00:00
|
|
|
github.com/lightninglabs/aperture v0.1.6-beta
|
2021-06-07 08:56:35 +00:00
|
|
|
github.com/lightninglabs/lndclient v0.11.1-9
|
2021-05-17 10:18:00 +00:00
|
|
|
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display
|
2021-06-18 00:16:29 +00:00
|
|
|
github.com/lightningnetwork/lnd v0.13.0-beta
|
2020-09-03 11:26:00 +00:00
|
|
|
github.com/lightningnetwork/lnd/cert v1.0.3
|
2020-09-30 10:34:05 +00:00
|
|
|
github.com/lightningnetwork/lnd/clock v1.0.1
|
2020-06-03 13:51:09 +00:00
|
|
|
github.com/lightningnetwork/lnd/queue v1.0.4
|
2020-10-12 11:34:55 +00:00
|
|
|
github.com/lightningnetwork/lnd/ticker v1.0.0
|
2021-05-17 10:18:00 +00:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2019-03-06 20:13:50 +00:00
|
|
|
github.com/urfave/cli v1.20.0
|
2021-05-17 10:18:00 +00:00
|
|
|
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
|
|
|
|
google.golang.org/grpc v1.29.1
|
2021-05-25 14:33:44 +00:00
|
|
|
google.golang.org/protobuf v1.23.0
|
2020-09-03 12:35:41 +00:00
|
|
|
gopkg.in/macaroon-bakery.v2 v2.0.1
|
2019-05-01 02:43:08 +00:00
|
|
|
gopkg.in/macaroon.v2 v2.1.0
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
2019-09-05 04:02:25 +00:00
|
|
|
|
2021-05-17 10:18:00 +00:00
|
|
|
// Fix incompatibility of etcd go.mod package.
|
|
|
|
// See https://github.com/etcd-io/etcd/issues/11154
|
|
|
|
replace go.etcd.io/etcd => go.etcd.io/etcd v0.5.0-alpha.5.0.20201125193152-8a03d2e9614b
|
|
|
|
|
2021-04-20 09:50:41 +00:00
|
|
|
go 1.15
|