forked from kubectyl/sftp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
49 lines (46 loc) · 1.81 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
module github.com/kubectyl/sftp-server
go 1.19
require (
emperror.dev/errors v0.8.1
github.com/NYTimes/logrotate v1.0.0
github.com/apex/log v1.9.0
github.com/kubectyl/kuber v0.0.0-20221218191748-e7e5c2f989ef
github.com/pkg/sftp v1.13.5
golang.org/x/crypto v0.5.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/Jeffail/gabs/v2 v2.6.1 // indirect
github.com/acobaugh/osrelease v0.1.0 // indirect
github.com/beevik/etree v1.1.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
github.com/creasty/defaults v1.6.0 // indirect
github.com/docker/docker v20.10.22+incompatible // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/gbrlsnchs/jwt/v3 v3.0.1 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/icza/dyno v0.0.0-20220812133438-f0b6f8a18845 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/magefile/mage v1.14.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/stretchr/testify v1.8.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/gorm v1.24.3 // indirect
gotest.tools/v3 v3.4.0 // indirect
)