-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
20 lines (17 loc) · 661 Bytes
/
go.mod
File metadata and controls
20 lines (17 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module feed-monitor
go 1.17
require (
github.com/joho/godotenv v1.4.0
github.com/mmcdole/gofeed v1.1.3
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
require (
github.com/PuerkitoBio/goquery v1.5.1 // indirect
github.com/andybalholm/cascadia v1.1.0 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/text v0.3.2 // indirect
)