This repository was archived by the owner on Feb 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathgo.mod
More file actions
60 lines (56 loc) · 2.08 KB
/
go.mod
File metadata and controls
60 lines (56 loc) · 2.08 KB
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
module fb2converter
go 1.25.7
tool (
golang.org/x/tools/cmd/stringer
honnef.co/go/tools/cmd/staticcheck
)
require (
dario.cat/mergo v1.0.2
github.com/BurntSushi/toml v1.6.0
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
github.com/bitly/go-simplejson v0.5.1
github.com/davecgh/go-spew v1.1.1
github.com/disintegration/imaging v1.6.2
github.com/fogleman/gg v1.3.0
github.com/fsnotify/fsnotify v1.9.0
github.com/ghodss/yaml v1.0.0
github.com/go-task/slim-sprig/v3 v3.0.0
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/google/uuid v1.6.0
github.com/gosimple/slug v1.15.0
github.com/h2non/filetype v1.1.3
github.com/hashicorp/hcl v1.0.0
github.com/hidez8891/zip v1.11.0
github.com/neurosnap/sentences v1.1.2
github.com/pkg/profile v1.7.0
github.com/urfave/cli/v2 v2.27.7
go.uber.org/zap v1.27.1
golang.org/x/image v0.35.0
golang.org/x/net v0.49.0
golang.org/x/sys v0.40.0
golang.org/x/term v0.39.0
golang.org/x/text v0.33.0
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/felixge/fgprof v0.9.5 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/pprof v0.0.0-20260202012954-cb029daf43ef // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/testify v1.11.1 // indirect
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20260112195511-716be5621a96 // indirect
golang.org/x/mod v0.32.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/tools v0.41.0 // indirect
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
honnef.co/go/tools v0.6.1 // indirect
)