Skip to content

Commit 352af25

Browse files
committed
Fix gomod
1 parent 1bb9f90 commit 352af25

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

go.mod

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,49 +2,52 @@ module github.com/crazy-max/ftpgrab/v7
22

33
go 1.17
44

5+
require (
6+
github.com/alecthomas/kong v0.2.17
7+
github.com/crazy-max/gonfig v0.5.0
8+
github.com/docker/go-units v0.4.0
9+
github.com/go-gomail/gomail v0.0.0-20160411212932-81ebce5c23df
10+
github.com/go-playground/validator/v10 v10.9.0
11+
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
12+
github.com/ilya1st/rotatewriter v0.0.0-20171126183947-3df0c1a3ed6d
13+
github.com/jlaffaye/ftp v0.0.0-20210307004419-5d4190119067
14+
github.com/matcornic/hermes/v2 v2.1.0
15+
github.com/nlopes/slack v0.6.0
16+
github.com/pkg/errors v0.9.1
17+
github.com/pkg/sftp v1.13.2
18+
github.com/robfig/cron/v3 v3.0.1
19+
github.com/rs/zerolog v1.24.0
20+
github.com/stretchr/testify v1.7.0
21+
go.etcd.io/bbolt v1.3.6
22+
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
23+
)
24+
525
require (
626
github.com/BurntSushi/toml v0.4.1 // indirect
727
github.com/Masterminds/semver v1.4.2 // indirect
828
github.com/Masterminds/sprig v2.16.0+incompatible // indirect
929
github.com/PuerkitoBio/goquery v1.5.0 // indirect
10-
github.com/alecthomas/kong v0.2.17
1130
github.com/andybalholm/cascadia v1.0.0 // indirect
1231
github.com/aokoli/goutils v1.0.1 // indirect
13-
github.com/crazy-max/gonfig v0.5.0
1432
github.com/davecgh/go-spew v1.1.1 // indirect
15-
github.com/docker/go-units v0.4.0
16-
github.com/go-gomail/gomail v0.0.0-20160411212932-81ebce5c23df
1733
github.com/go-playground/locales v0.14.0 // indirect
1834
github.com/go-playground/universal-translator v0.18.0 // indirect
19-
github.com/go-playground/validator/v10 v10.9.0
2035
github.com/google/uuid v1.0.0 // indirect
2136
github.com/gorilla/css v1.0.0 // indirect
2237
github.com/gorilla/websocket v1.4.2 // indirect
23-
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
2438
github.com/huandu/xstrings v1.2.0 // indirect
25-
github.com/ilya1st/rotatewriter v0.0.0-20171126183947-3df0c1a3ed6d
2639
github.com/imdario/mergo v0.3.6 // indirect
2740
github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0 // indirect
28-
github.com/jlaffaye/ftp v0.0.0-20210307004419-5d4190119067
2941
github.com/kr/fs v0.1.0 // indirect
3042
github.com/leodido/go-urn v1.2.1 // indirect
31-
github.com/matcornic/hermes/v2 v2.1.0
3243
github.com/mattn/go-runewidth v0.0.3 // indirect
33-
github.com/nlopes/slack v0.6.0
3444
github.com/olekukonko/tablewriter v0.0.1 // indirect
35-
github.com/pkg/errors v0.9.1
36-
github.com/pkg/sftp v1.13.2
3745
github.com/pmezard/go-difflib v1.0.0 // indirect
38-
github.com/robfig/cron/v3 v3.0.1
39-
github.com/rs/zerolog v1.24.0
4046
github.com/russross/blackfriday/v2 v2.0.1 // indirect
4147
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
4248
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
43-
github.com/stretchr/testify v1.7.0
4449
github.com/vanng822/css v0.0.0-20190504095207-a21e860bcd04 // indirect
4550
github.com/vanng822/go-premailer v0.0.0-20191214114701-be27abe028fe // indirect
46-
go.etcd.io/bbolt v1.3.6
47-
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
4851
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
4952
golang.org/x/sys v0.0.0-20210820121016-41cdb8703e55 // indirect
5053
golang.org/x/text v0.3.6 // indirect

0 commit comments

Comments
 (0)