2019-03-06 15:29:44 -08:00
|
|
|
module github.com/lightninglabs/loop
|
2019-03-06 21:13:50 +01:00
|
|
|
|
|
|
|
|
require (
|
2022-06-10 16:51:26 +02:00
|
|
|
github.com/btcsuite/btcd v0.23.1
|
2022-06-02 18:26:17 +02:00
|
|
|
github.com/btcsuite/btcd/btcec/v2 v2.2.0
|
2022-04-14 12:40:30 -04:00
|
|
|
github.com/btcsuite/btcd/btcutil v1.1.1
|
2022-07-07 17:28:22 +02:00
|
|
|
github.com/btcsuite/btcd/btcutil/psbt v1.1.4
|
2022-04-14 12:40:30 -04:00
|
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
|
2019-03-06 21:13:50 +01:00
|
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
2022-03-14 12:36:02 +00:00
|
|
|
github.com/btcsuite/btcwallet/wtxmgr v1.5.0
|
2019-09-14 05:38:00 -07:00
|
|
|
github.com/coreos/bbolt v1.3.3
|
2021-12-01 17:04:40 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2022-04-14 12:40:30 -04:00
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
|
2019-03-06 21:13:50 +01:00
|
|
|
github.com/fortytw2/leaktest v1.3.0
|
2021-07-29 13:32:53 +02:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0
|
2019-03-15 17:22:07 -07:00
|
|
|
github.com/jessevdk/go-flags v1.4.0
|
2022-06-02 18:26:17 +02:00
|
|
|
github.com/lightninglabs/aperture v0.1.18-beta
|
2022-07-07 17:28:22 +02:00
|
|
|
github.com/lightninglabs/lndclient v0.15.0-12
|
2022-06-02 18:26:17 +02:00
|
|
|
github.com/lightninglabs/loop/swapserverrpc v1.0.1
|
2021-05-17 12:18:00 +02:00
|
|
|
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display
|
2022-07-07 17:28:22 +02:00
|
|
|
github.com/lightningnetwork/lnd v0.15.0-beta
|
2022-03-14 12:36:02 +00:00
|
|
|
github.com/lightningnetwork/lnd/cert v1.1.1
|
2021-09-21 13:33:38 +02:00
|
|
|
github.com/lightningnetwork/lnd/clock v1.1.0
|
|
|
|
|
github.com/lightningnetwork/lnd/queue v1.1.0
|
|
|
|
|
github.com/lightningnetwork/lnd/ticker v1.1.0
|
2022-06-02 18:26:17 +02:00
|
|
|
github.com/lightningnetwork/lnd/tor v1.0.1
|
|
|
|
|
github.com/stretchr/testify v1.7.1
|
2022-01-27 17:45:01 +01:00
|
|
|
github.com/urfave/cli v1.22.4
|
2022-07-07 17:28:22 +02:00
|
|
|
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f
|
2022-03-14 12:36:02 +00:00
|
|
|
google.golang.org/grpc v1.39.0
|
|
|
|
|
google.golang.org/protobuf v1.27.1
|
2020-09-03 14:35:41 +02:00
|
|
|
gopkg.in/macaroon-bakery.v2 v2.0.1
|
2019-04-30 19:43:08 -07:00
|
|
|
gopkg.in/macaroon.v2 v2.1.0
|
2019-03-06 21:13:50 +01:00
|
|
|
)
|
2019-09-04 21:02:25 -07:00
|
|
|
|
2022-04-24 22:29:13 +02:00
|
|
|
// TODO(bhandras): remove when the next swapserverrpc is tagged.
|
|
|
|
|
replace github.com/lightninglabs/loop/swapserverrpc => ./swapserverrpc
|
|
|
|
|
|
2022-03-14 12:36:02 +00:00
|
|
|
go 1.16
|