-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
34 lines (31 loc) · 1.3 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
module github.com/realzhangm/leetcode_collector
go 1.18
require (
github.com/gocolly/colly v1.2.0
github.com/howeyc/gopass v0.0.0-20210920133722-c8aef6fb66ef
github.com/jinzhu/configor v1.2.1
github.com/machinebox/graphql v0.2.2
github.com/pkg/errors v0.9.1
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/PuerkitoBio/goquery v1.7.1 // indirect
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/antchfx/htmlquery v1.2.4 // indirect
github.com/antchfx/xmlquery v1.3.8 // indirect
github.com/antchfx/xpath v1.2.0 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.3.1 // indirect
github.com/kennygrant/sanitize v1.2.4 // indirect
github.com/matryer/is v1.4.0 // indirect
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/temoto/robotstxt v1.1.2 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
golang.org/x/text v0.3.6 // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)