-
Notifications
You must be signed in to change notification settings - Fork 125
/
go.mod
37 lines (34 loc) · 1.36 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
module github.com/yann0917/dedao-dl
go 1.19
require (
github.com/JoshVarga/svgparser v0.0.0-20200804023048-5eaba627a7d1
github.com/PuerkitoBio/goquery v1.9.2
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.9.3
github.com/bmaupin/go-epub v1.1.0
github.com/gabriel-vasile/mimetype v1.4.6
github.com/go-resty/resty/v2 v2.15.3
github.com/gomarkdown/markdown v0.0.0-20240930133441-72d49d9543d8
github.com/json-iterator/go v1.1.12
github.com/mattn/go-colorable v0.1.13
github.com/mitchellh/mapstructure v1.5.0
github.com/olekukonko/tablewriter v0.0.5
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/spf13/cobra v1.8.1
golang.org/x/sync v0.8.0
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/gofrs/uuid v4.4.0+incompatible // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/vincent-petithory/dataurl v1.0.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
)