lbcwallet/go.mod

54 lines
2.3 KiB
Modula-2
Raw Normal View History

2021-09-12 07:28:08 +02:00
module github.com/lbryio/lbcwallet
require (
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
2018-11-30 08:08:22 +01:00
github.com/davecgh/go-spew v1.1.1
2021-09-12 07:28:08 +02:00
github.com/jessevdk/go-flags v1.5.0
github.com/jrick/logrotate v1.0.0
2022-10-31 08:25:19 +01:00
github.com/lbryio/lbcd v0.22.118
github.com/lbryio/lbcutil v1.0.202
2021-09-12 07:28:08 +02:00
github.com/lightningnetwork/lnd/clock v1.1.0
github.com/stretchr/testify v1.7.1
go.etcd.io/bbolt v1.3.6
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898
2022-08-05 06:23:24 +02:00
golang.org/x/tools v0.1.10
)
2021-09-12 07:28:08 +02:00
require (
github.com/DataDog/zstd v1.5.2 // indirect
github.com/aead/siphash v1.0.1 // indirect
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cockroachdb/errors v1.9.0 // indirect
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
github.com/cockroachdb/pebble v0.0.0-20220523221036-bb2c1501ac23 // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/codahale/hdrhistogram v0.9.0 // indirect
github.com/getsentry/sentry-go v0.13.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/kkdai/bstream v1.0.0 // indirect
github.com/klauspost/compress v1.15.4 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
golang.org/x/exp v0.0.0-20220518171630-0b5c67f07fdf // indirect
2022-08-05 06:23:24 +02:00
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
2021-09-12 07:28:08 +02:00
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
2022-08-05 06:23:24 +02:00
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2021-09-12 07:28:08 +02:00
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
2021-03-04 16:05:46 +01:00
// The old version of ginko that's used in btcd imports an ancient version of
// gopkg.in/fsnotify.v1 that isn't go mod compatible. We fix that import error
// by replacing ginko (which is only a test library anyway) with a more recent
// version.
replace github.com/onsi/ginkgo => github.com/onsi/ginkgo v1.14.2
2022-08-05 06:23:24 +02:00
go 1.19