2021-03-18 21:12:48 +01:00
|
|
|
module github.com/lbryio/hub
|
|
|
|
|
2022-03-05 01:51:36 +01:00
|
|
|
go 1.17
|
2021-03-18 21:12:48 +01:00
|
|
|
|
|
|
|
require (
|
2021-10-01 19:54:03 +02:00
|
|
|
github.com/ReneKroon/ttlcache/v2 v2.8.1
|
2021-05-31 03:34:57 +02:00
|
|
|
github.com/akamensky/argparse v1.2.2
|
2021-06-28 19:54:49 +02:00
|
|
|
github.com/lbryio/lbry.go/v2 v2.7.2-0.20210625145058-2b155597bf57
|
2021-12-07 02:36:12 +01:00
|
|
|
github.com/linxGnu/grocksdb v1.6.42
|
2021-04-19 21:25:34 +02:00
|
|
|
github.com/olivere/elastic/v7 v7.0.24
|
2021-07-06 02:20:38 +02:00
|
|
|
github.com/prometheus/client_golang v1.11.0
|
2021-10-30 07:27:25 +02:00
|
|
|
github.com/prometheus/client_model v0.2.0
|
2022-03-05 01:51:36 +01:00
|
|
|
github.com/sirupsen/logrus v1.6.0
|
2021-05-31 03:34:57 +02:00
|
|
|
golang.org/x/text v0.3.6
|
|
|
|
google.golang.org/grpc v1.38.0
|
2021-10-25 03:39:37 +02:00
|
|
|
google.golang.org/protobuf v1.27.1
|
2021-06-07 22:57:41 +02:00
|
|
|
gopkg.in/karalabe/cookiejar.v1 v1.0.0-20141109175019-e1490cae028c
|
2021-03-18 21:12:48 +01:00
|
|
|
)
|
2022-03-05 01:51:36 +01:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/go-errors/errors v1.1.1 // indirect
|
2022-03-07 20:28:36 +01:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2022-03-05 01:51:36 +01:00
|
|
|
github.com/gorilla/websocket v1.4.1 // indirect
|
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
|
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
|
|
github.com/nlopes/slack v0.6.0 // indirect
|
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
|
|
github.com/stretchr/testify v1.7.0 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
|
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
|
|
|
|
gopkg.in/nullbio/null.v6 v6.0.0-20161116030900-40264a2e6b79 // indirect
|
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
|
|
)
|