-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
39 lines (36 loc) · 1.61 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
module github.com/thesoenke/news-crawler
go 1.19
require (
github.com/advancedlogic/GoOse v0.0.0-20210820140952-9d5822d4a625
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76
github.com/jlubawy/go-boilerpipe v0.1.3
github.com/mmcdole/gofeed v1.0.0-beta2
github.com/spf13/cobra v0.0.3
gopkg.in/cheggaaa/pb.v1 v1.0.27
gopkg.in/neurosnap/sentences.v1 v1.0.6
gopkg.in/olivere/elastic.v5 v5.0.79
)
require (
github.com/PuerkitoBio/goquery v1.5.0 // indirect
github.com/andybalholm/cascadia v1.0.0 // indirect
github.com/araddon/dateparse v0.0.0-20181123171228-21df004e09ca // indirect
github.com/fatih/color v1.14.1 // indirect
github.com/fatih/set v0.2.1 // indirect
github.com/gigawattio/window v0.0.0-20180317192513-0f5467e35573 // indirect
github.com/go-resty/resty/v2 v2.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0 // indirect
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect
github.com/neurosnap/sentences v1.1.2 // indirect
github.com/olekukonko/tablewriter v0.0.1 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
github.com/stretchr/testify v1.8.1 // indirect
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.3.0 // indirect
)