-
Notifications
You must be signed in to change notification settings - Fork 19
/
go.mod
48 lines (45 loc) · 1.66 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
module fb2converter
go 1.23.2
require (
dario.cat/mergo v1.0.1
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c
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.7.0
github.com/ghodss/yaml v1.0.0
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/google/uuid v1.6.0
github.com/gosimple/slug v1.14.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.5
go.uber.org/zap v1.27.0
golang.org/x/image v0.21.0
golang.org/x/net v0.30.0
golang.org/x/sys v0.26.0
golang.org/x/term v0.25.0
golang.org/x/text v0.19.0
golang.org/x/tools v0.26.0
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
honnef.co/go/tools v0.5.1
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/felixge/fgprof v0.9.3 // indirect
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sync v0.8.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)