-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
33 lines (30 loc) · 1.64 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
module gocn
go 1.12
require (
github.com/PuerkitoBio/goquery v1.4.1 // indirect
github.com/andybalholm/cascadia v1.0.0 // indirect
github.com/antchfx/htmlquery v0.0.0-20180726134113-496ad84c8a0c // indirect
github.com/antchfx/xmlquery v0.0.0-20180726134140-2805f22c26c4 // indirect
github.com/antchfx/xpath v0.0.0-20180524052354-077bca4d2caa // indirect
github.com/go-playground/locales v0.12.1 // indirect
github.com/go-playground/universal-translator v0.0.0-20170327191703-71201497bace // indirect
github.com/gobwas/glob v0.0.0-20180809073612-f756513aec94 // indirect
github.com/gocolly/colly v1.0.0
github.com/kennygrant/sanitize v1.2.4 // indirect
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/spf13/viper v1.3.2
github.com/temoto/robotstxt v0.0.0-20180810133444-97ee4a9ee6ea // indirect
golang.org/x/sync v0.0.0-00010101000000-000000000000 // indirect
google.golang.org/appengine v0.0.0-00010101000000-000000000000 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v9 v9.21.0
)
replace (
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20190313024323-a1f597ede03a
golang.org/x/net => github.com/golang/net v0.0.0-20190313082753-5c2c250b6a70
golang.org/x/sync => github.com/golang/sync v0.0.0-20190227155943-e225da77a7e6
golang.org/x/sys => github.com/golang/sys v0.0.0-20190316082340-a2f829d7f35f
golang.org/x/text => github.com/golang/text v0.3.1-0.20190306152657-5d731a35f486
golang.org/x/tools => github.com/golang/tools v0.0.0-20190313153539-516ab0aa77ec
google.golang.org/appengine => github.com/golang/appengine v1.4.1-0.20190215204344-54a98f90d1c4
)