-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
72 lines (67 loc) · 2.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module github.com/jtarchie/builder
go 1.22.0
toolchain go1.23.2
require (
github.com/Masterminds/sprig/v3 v3.3.0
github.com/adrg/frontmatter v0.2.0
github.com/alecthomas/chroma v0.10.0
github.com/alecthomas/kong v1.4.0
github.com/bmatcuk/doublestar/v4 v4.7.1
github.com/djherbis/times v1.6.0
github.com/fsnotify/fsnotify v1.8.0
github.com/gorilla/feeds v1.2.0
github.com/gosimple/slug v1.14.0
github.com/labstack/echo/v4 v4.12.0
github.com/microcosm-cc/bluemonday v1.0.27
github.com/onsi/ginkgo/v2 v2.22.0
github.com/onsi/gomega v1.36.0
github.com/otiai10/copy v1.14.0
github.com/sabloger/sitemap-generator v1.3.0
github.com/samber/lo v1.47.0
github.com/tdewolff/minify v2.3.6+incompatible
github.com/yuin/goldmark v1.7.8
github.com/yuin/goldmark-emoji v1.0.4
github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594
go.abhg.dev/goldmark/anchor v0.1.1
go.abhg.dev/goldmark/mermaid v0.5.0
go.uber.org/atomic v1.11.0
golang.org/x/sync v0.9.0
)
require (
dario.cat/mergo v1.0.1 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.3.1 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241122213907-cbe949e5a41b // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/huandu/xstrings v1.5.0 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/tdewolff/parse v2.3.4+incompatible // indirect
github.com/tdewolff/test v1.0.9 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.29.0 // indirect
golang.org/x/net v0.31.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/time v0.8.0 // indirect
golang.org/x/tools v0.27.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.16