forked from btcsuite/btcd
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
785 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,56 @@ | ||
module github.com/btcsuite/btcd | ||
module github.com/lbryio/lbcd | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f | ||
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce | ||
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd | ||
github.com/btcsuite/goleveldb v1.0.0 | ||
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 | ||
github.com/btcsuite/winsvc v1.0.0 | ||
github.com/cockroachdb/errors v1.8.6 | ||
github.com/cockroachdb/pebble v0.0.0-20211124004043-0dc90bc41e62 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/decred/dcrd/lru v1.0.0 | ||
github.com/felixge/fgprof v0.9.1 | ||
github.com/jessevdk/go-flags v1.4.0 | ||
github.com/jrick/logrotate v1.0.0 | ||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 | ||
github.com/lbryio/lbcutil v1.0.202-rc3 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/shirou/gopsutil/v3 v3.21.7 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/vmihailenco/msgpack/v5 v5.3.2 | ||
golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b | ||
golang.org/x/text v0.3.7 | ||
) | ||
|
||
go 1.16 | ||
require ( | ||
github.com/DataDog/zstd v1.5.0 // indirect | ||
github.com/StackExchange/wmi v1.2.1 // indirect | ||
github.com/aead/siphash v1.0.1 // indirect | ||
github.com/btcsuite/snappy-go v1.0.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect | ||
github.com/cockroachdb/redact v1.1.3 // indirect | ||
github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2 // indirect | ||
github.com/go-ole/go-ole v1.2.5 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/pprof v0.0.0-20200615235658-03e1cf38a040 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kkdai/bstream v1.0.0 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/onsi/ginkgo v1.14.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.8.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/tklauser/go-sysconf v0.3.7 // indirect | ||
github.com/tklauser/numcpus v0.2.3 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
golang.org/x/exp v0.0.0-20211123021643-48cbe7f80d7c // indirect | ||
golang.org/x/sys v0.0.0-20211123173158-ef496fb156ab // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.