forked from mtgban/go-mtgban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
67 lines (63 loc) · 2.69 KB
/
go.mod
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
59
60
61
62
63
64
65
66
67
module github.com/mtgban/go-mtgban
go 1.19
require (
cloud.google.com/go/storage v1.33.0
github.com/PuerkitoBio/goquery v1.8.1
github.com/gocolly/colly v1.2.0
github.com/gocolly/colly/v2 v2.1.0
github.com/google/uuid v1.6.0
github.com/hashicorp/go-cleanhttp v0.5.2
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/jmcvetta/randutil v0.0.0-20150817122601-2bb1b664bcff
github.com/joho/godotenv v1.5.1
github.com/scizorman/go-ndjson v0.0.0-20200902005011-1d92486df71e
go.opencensus.io v0.24.0 // indirect
golang.org/x/text v0.15.0
golang.org/x/time v0.6.0
google.golang.org/api v0.147.0
)
require (
github.com/alxjsn/kooky v0.2.1
github.com/corpix/uarand v0.2.0
github.com/montanaflynn/stats v0.7.1
github.com/mroth/weightedrand/v2 v2.1.0
github.com/mtgban/go-tcgplayer v0.0.0-20240821150414-caace4f5b3f4
github.com/ulikunitz/xz v0.5.11
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
golang.org/x/oauth2 v0.13.0
gopkg.in/Iwark/spreadsheet.v2 v2.0.0-20230915040305-7677e8164883
)
require (
cloud.google.com/go v0.110.8 // indirect
cloud.google.com/go/compute v1.23.1 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.3 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/antchfx/htmlquery v1.3.0 // indirect
github.com/antchfx/xmlquery v1.3.18 // indirect
github.com/antchfx/xpath v1.2.4 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/go-sqlite/sqlite3 v0.0.0-20180313105335-53dd8e640ee7 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/gonuts/binary v0.2.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/kennygrant/sanitize v1.2.4 // indirect
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect
github.com/temoto/robotstxt v1.1.2 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.4.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/grpc v1.58.3 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)