forked from OdyseeTeam/odysee-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
58 lines (56 loc) · 2.26 KB
/
go.mod
File metadata and controls
58 lines (56 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module github.com/lbryio/lbrytv
go 1.16
require (
github.com/ClickHouse/clickhouse-go v1.4.5
github.com/Pallinder/go-randomdata v1.2.0
github.com/alecthomas/kong v0.2.16
github.com/bluele/factory-go v0.0.1
github.com/getsentry/sentry-go v0.6.1
github.com/gobuffalo/logger v1.0.3 // indirect
github.com/gobuffalo/packd v1.0.0 // indirect
github.com/gobuffalo/packr/v2 v2.7.1
github.com/gorilla/mux v1.8.0
github.com/hashicorp/go-cleanhttp v0.5.1
github.com/hashicorp/go-retryablehttp v0.5.3
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a
github.com/jinzhu/gorm v1.9.9
github.com/jmoiron/sqlx v1.2.0
github.com/kat-co/vala v0.0.0-20170210184112-42e1d8b61f12
github.com/lbryio/lbry.go/v2 v2.7.1
github.com/lbryio/lbrytv-player v0.7.12
github.com/lib/pq v1.10.0
github.com/magiconair/properties v1.8.5 // indirect
github.com/markbates/pkger v0.17.0
github.com/nsf/jsondiff v0.0.0-20190712045011-8443391ee9b6
github.com/oschwald/geoip2-golang v1.5.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/client_model v0.2.0
github.com/rogpeppe/go-internal v1.6.2 // indirect
github.com/rs/cors v1.7.0
github.com/rubenv/sql-migrate v0.0.0-20210215143335-f84234893558
github.com/sirupsen/logrus v1.6.0
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v1.1.3
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.0
github.com/tus/tusd v1.6.0
github.com/volatiletech/inflect v0.0.1 // indirect
github.com/volatiletech/null v8.0.0+incompatible
github.com/volatiletech/sqlboiler v3.4.0+incompatible
github.com/ybbus/jsonrpc v2.1.2+incompatible
go.uber.org/zap v1.17.0
goa.design/goa/v3 v3.5.2
goa.design/plugins/v3 v3.4.3
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.6-0.20210802203754-9b21a8868e16 // indirect
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
)