-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
27 lines (24 loc) · 829 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
27
module AfdianToMarkdown
go 1.23
require (
github.com/JohannesKaufmann/html-to-markdown v1.6.0
github.com/carlmjohnson/requests v0.24.3
github.com/fatih/color v1.18.0
github.com/spf13/cast v1.7.0
github.com/stretchr/testify v1.10.0
github.com/tidwall/gjson v1.18.0
github.com/urfave/cli/v3 v3.0.0-beta1
)
require (
github.com/PuerkitoBio/goquery v1.9.2 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.25.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)