|
1 | | -module github.com/btcsuite/btcd |
| 1 | +module github.com/lbryio/lbcd |
| 2 | + |
| 3 | +go 1.17 |
2 | 4 |
|
3 | 5 | require ( |
4 | 6 | github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f |
5 | | - github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce |
6 | 7 | github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd |
7 | 8 | github.com/btcsuite/goleveldb v1.0.0 |
8 | 9 | github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 |
9 | 10 | github.com/btcsuite/winsvc v1.0.0 |
| 11 | + github.com/cockroachdb/errors v1.8.6 |
| 12 | + github.com/cockroachdb/pebble v0.0.0-20211124004043-0dc90bc41e62 |
10 | 13 | github.com/davecgh/go-spew v1.1.1 |
11 | 14 | github.com/decred/dcrd/lru v1.0.0 |
| 15 | + github.com/felixge/fgprof v0.9.1 |
12 | 16 | github.com/jessevdk/go-flags v1.4.0 |
13 | 17 | github.com/jrick/logrotate v1.0.0 |
14 | | - github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect |
15 | | - golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 |
| 18 | + github.com/lbryio/lbcutil v1.0.202-rc3 |
| 19 | + github.com/pkg/errors v0.9.1 |
| 20 | + github.com/shirou/gopsutil/v3 v3.21.7 |
| 21 | + github.com/spf13/cobra v1.1.3 |
| 22 | + github.com/stretchr/testify v1.7.0 |
| 23 | + github.com/vmihailenco/msgpack/v5 v5.3.2 |
| 24 | + golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b |
| 25 | + golang.org/x/text v0.3.7 |
16 | 26 | ) |
17 | 27 |
|
18 | | -go 1.16 |
| 28 | +require ( |
| 29 | + github.com/DataDog/zstd v1.5.0 // indirect |
| 30 | + github.com/StackExchange/wmi v1.2.1 // indirect |
| 31 | + github.com/aead/siphash v1.0.1 // indirect |
| 32 | + github.com/btcsuite/snappy-go v1.0.0 // indirect |
| 33 | + github.com/cespare/xxhash/v2 v2.1.2 // indirect |
| 34 | + github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect |
| 35 | + github.com/cockroachdb/redact v1.1.3 // indirect |
| 36 | + github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2 // indirect |
| 37 | + github.com/go-ole/go-ole v1.2.5 // indirect |
| 38 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 39 | + github.com/golang/snappy v0.0.4 // indirect |
| 40 | + github.com/google/pprof v0.0.0-20200615235658-03e1cf38a040 // indirect |
| 41 | + github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 42 | + github.com/kkdai/bstream v1.0.0 // indirect |
| 43 | + github.com/klauspost/compress v1.13.6 // indirect |
| 44 | + github.com/kr/pretty v0.3.0 // indirect |
| 45 | + github.com/kr/text v0.2.0 // indirect |
| 46 | + github.com/onsi/ginkgo v1.14.0 // indirect |
| 47 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 48 | + github.com/rogpeppe/go-internal v1.8.0 // indirect |
| 49 | + github.com/spf13/pflag v1.0.5 // indirect |
| 50 | + github.com/tklauser/go-sysconf v0.3.7 // indirect |
| 51 | + github.com/tklauser/numcpus v0.2.3 // indirect |
| 52 | + github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect |
| 53 | + golang.org/x/exp v0.0.0-20211123021643-48cbe7f80d7c // indirect |
| 54 | + golang.org/x/sys v0.0.0-20211123173158-ef496fb156ab // indirect |
| 55 | + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 56 | +) |
0 commit comments