-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
26 lines (23 loc) · 806 Bytes
/
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
module github.com/alexferrari88/sbstck-dl
go 1.20
require (
github.com/JohannesKaufmann/html-to-markdown v1.5.0
github.com/PuerkitoBio/goquery v1.8.1
github.com/cenkalti/backoff/v4 v4.2.1
github.com/k3a/html2text v1.2.1
github.com/schollz/progressbar/v3 v3.14.1
github.com/spf13/cobra v1.8.0
golang.org/x/sync v0.6.0
golang.org/x/time v0.5.0
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/term v0.16.0 // indirect
)