-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
58 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,45 @@ | ||
module github.com/yann0917/dedao-dl | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/JoshVarga/svgparser v0.0.0-20200804023048-5eaba627a7d1 | ||
github.com/PuerkitoBio/goquery v1.8.0 | ||
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.7.2 | ||
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.8.2 | ||
github.com/bmaupin/go-epub v1.0.1 | ||
github.com/chromedp/cdproto v0.0.0-20221011223153-490dc4d81f7c | ||
github.com/chromedp/chromedp v0.8.6 | ||
github.com/chromedp/cdproto v0.0.0-20230109101555-6b041c6303cc | ||
github.com/chromedp/chromedp v0.8.7 | ||
github.com/gabriel-vasile/mimetype v1.4.1 | ||
github.com/go-resty/resty/v2 v2.7.0 | ||
github.com/gofrs/uuid v4.3.0+incompatible // indirect | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/mattn/go-colorable v0.1.13 | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rivo/uniseg v0.4.2 // indirect | ||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e | ||
github.com/spf13/cobra v1.6.0 | ||
github.com/stretchr/testify v1.8.0 // indirect | ||
github.com/spf13/cobra v1.6.1 | ||
golang.org/x/sync v0.1.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/cascadia v1.3.1 // indirect | ||
github.com/chromedp/sysutil v1.0.0 // indirect | ||
github.com/gobwas/httphead v0.1.0 // indirect | ||
github.com/gobwas/pool v0.2.1 // indirect | ||
github.com/gobwas/ws v1.1.0 // indirect | ||
github.com/gofrs/uuid v4.3.1+incompatible // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // 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.3 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.8.1 // indirect | ||
github.com/vincent-petithory/dataurl v1.0.0 // indirect | ||
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect | ||
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0 | ||
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect | ||
golang.org/x/text v0.3.8 // indirect | ||
golang.org/x/net v0.5.0 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/text v0.6.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters