This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
46 lines (42 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
39
40
41
42
43
44
45
46
module github.com/samsonmxvi/go-wenku-downloader
go 1.20
require (
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394
github.com/stretchr/testify v1.8.4
)
require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/gofrs/uuid/v5 v5.0.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/vincent-petithory/dataurl v1.0.0 // indirect
golang.org/x/net v0.13.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/term v0.10.0 // indirect
gopkg.in/VividCortex/ewma.v1 v1.1.1 // indirect
gopkg.in/fatih/color.v1 v1.7.0 // indirect
gopkg.in/mattn/go-colorable.v0 v0.1.0 // indirect
gopkg.in/mattn/go-isatty.v0 v0.0.4 // indirect
gopkg.in/mattn/go-runewidth.v0 v0.0.4 // indirect
)
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/PuerkitoBio/goquery v1.8.1
github.com/cavaliergopher/grab/v3 v3.0.1
github.com/corpix/uarand v0.2.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.15.0
github.com/go-shiori/go-epub v1.2.0
github.com/manifoldco/promptui v0.9.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/urfave/cli v1.22.14
golang.org/x/text v0.11.0
gopkg.in/cheggaaa/pb.v2 v2.0.7
gopkg.in/yaml.v3 v3.0.1 // indirect
)