mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
To make it possible to replace the swapserverrpc module in the server, we declare it as its own submodule. This allows the server to make changes to its local protos (and replace loop's copy with the local version), to use changes that are not yet merged to the client repo.
33 lines
1.3 KiB
Modula-2
33 lines
1.3 KiB
Modula-2
module github.com/lightninglabs/loop
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20211005184431-e3449998be39
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
|
github.com/btcsuite/btcutil v1.0.3-0.20210527170813-e2ba6805a890
|
|
github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20210822222949-9b5a201c344c
|
|
github.com/coreos/bbolt v1.3.3
|
|
github.com/fortytw2/leaktest v1.3.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/lightninglabs/aperture v0.1.6-beta
|
|
github.com/lightninglabs/lndclient v0.14.0-5
|
|
github.com/lightninglabs/loop/swapserverrpc v1.0.0
|
|
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display
|
|
github.com/lightningnetwork/lnd v0.14.1-beta
|
|
github.com/lightningnetwork/lnd/cert v1.1.0
|
|
github.com/lightningnetwork/lnd/clock v1.1.0
|
|
github.com/lightningnetwork/lnd/kvdb v1.2.1
|
|
github.com/lightningnetwork/lnd/queue v1.1.0
|
|
github.com/lightningnetwork/lnd/ticker v1.1.0
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/urfave/cli v1.20.0
|
|
golang.org/x/net v0.0.0-20210913180222-943fd674d43e
|
|
google.golang.org/grpc v1.38.0
|
|
google.golang.org/protobuf v1.26.0
|
|
gopkg.in/macaroon-bakery.v2 v2.0.1
|
|
gopkg.in/macaroon.v2 v2.1.0
|
|
)
|
|
|
|
go 1.15
|
|
|
|
replace github.com/lightninglabs/loop/swapserverrpc => ./swapserverrpc
|