forked from cornelk/goscrape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (28 loc) · 1.09 KB
/
go.mod
File metadata and controls
31 lines (28 loc) · 1.09 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
module github.com/cornelk/goscrape
go 1.20
require (
github.com/alexflint/go-arg v1.4.3
github.com/cornelk/gotokit v0.0.0-20230404181340-4574acbaaf1f
github.com/gorilla/css v1.0.0
github.com/h2non/filetype v1.1.4-0.20230123234534-cfcd7d097bc4
github.com/headzoo/surf v1.0.1
github.com/stretchr/testify v1.8.2
golang.org/x/net v0.8.0
)
require (
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/alexflint/go-scalar v1.1.0 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/headzoo/ut v0.0.0-20181013193318-a13b5a7a02ca // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.6.1 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)