forked from nange/gospider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
38 lines (36 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
34
35
36
37
38
module github.com/nange/gospider
require (
cloud.google.com/go v0.26.0 // indirect
github.com/DATA-DOG/go-sqlmock v1.3.2
github.com/PuerkitoBio/goquery v1.4.1
github.com/andybalholm/cascadia v1.0.0 // indirect
github.com/antchfx/htmlquery v0.0.0-20180524052033-b4407197cfe8 // indirect
github.com/antchfx/xmlquery v0.0.0-20180524052823-9188d8442369 // indirect
github.com/antchfx/xpath v0.0.0-20180524052354-077bca4d2caa // indirect
github.com/appleboy/gin-jwt/v2 v2.6.2
github.com/denisenkom/go-mssqldb v0.0.0-20180824013952-8fac8b954edb // indirect
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/gin-gonic/gin v1.4.0
github.com/go-sql-driver/mysql v1.4.1
github.com/go-xorm/builder v0.3.4
github.com/gobuffalo/packr v1.26.0
github.com/gobwas/glob v0.2.3 // indirect
github.com/gocolly/colly v1.2.0
github.com/google/go-cmp v0.2.0 // indirect
github.com/jinzhu/gorm v1.9.1
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
github.com/jinzhu/now v0.0.0-20180511015916-ed742868f2ae // indirect
github.com/kennygrant/sanitize v1.2.3 // indirect
github.com/pkg/errors v0.8.1
github.com/robfig/cron v0.0.0-20180505203441-b41be1df6967
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/sirupsen/logrus v1.4.2
github.com/stretchr/testify v1.3.0
github.com/temoto/robotstxt v0.0.0-20170603013557-9e4646fa7053 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf
golang.org/x/text v0.3.0
google.golang.org/appengine v1.1.0 // indirect
)
go 1.13