-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
28 lines (25 loc) · 854 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
28
module github.com/szkiba/mdcode
go 1.21
require (
github.com/gobwas/glob v0.2.3
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/liamg/memoryfs v1.6.0
github.com/rodaine/table v1.1.0
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.7.1
github.com/yuin/goldmark v1.6.0
mvdan.cc/sh/v3 v3.7.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sync v0.2.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)