2019-10-01 12:22:30 -03:00
|
|
|
module github.com/muun/libwallet
|
|
|
|
|
2020-11-09 10:05:29 -03:00
|
|
|
go 1.14
|
2019-10-01 12:22:30 -03:00
|
|
|
|
|
|
|
require (
|
2020-11-09 10:05:29 -03:00
|
|
|
github.com/btcsuite/btcd v0.20.1-beta.0.20200515232429-9f0179fd2c46
|
|
|
|
github.com/btcsuite/btcutil v1.0.2
|
2021-11-12 19:06:13 -03:00
|
|
|
github.com/fiatjaf/go-lnurl v1.3.1
|
2020-11-09 10:05:29 -03:00
|
|
|
github.com/jinzhu/gorm v1.9.16
|
|
|
|
github.com/lightningnetwork/lightning-onion v1.0.1
|
|
|
|
github.com/lightningnetwork/lnd v0.10.4-beta
|
|
|
|
github.com/miekg/dns v1.1.29 // indirect
|
2021-11-12 19:06:13 -03:00
|
|
|
github.com/pdfcpu/pdfcpu v0.3.11
|
2020-11-09 10:05:29 -03:00
|
|
|
github.com/pkg/errors v0.9.1
|
2022-03-16 11:14:47 -03:00
|
|
|
github.com/shopspring/decimal v1.2.0
|
2022-10-04 14:55:21 -03:00
|
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
|
|
|
|
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
|
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
|
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2021-11-12 19:06:13 -03:00
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
2020-11-09 10:05:29 -03:00
|
|
|
google.golang.org/protobuf v1.25.0
|
|
|
|
gopkg.in/gormigrate.v1 v1.6.0
|
2019-10-01 12:22:30 -03:00
|
|
|
)
|
2021-01-29 18:51:08 -03:00
|
|
|
|
|
|
|
// Fork that includes the -cache flag for quicker builds
|
2022-10-04 14:55:21 -03:00
|
|
|
replace golang.org/x/mobile => github.com/muun/mobile v0.0.0-20220913162405-8cc629edd37b
|