-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
47 lines (44 loc) · 1.72 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
module github.com/josephlewis42/honeyssh
go 1.17
require (
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
github.com/bramvdbogaerde/go-scp v1.1.0
github.com/fatih/color v1.13.0
github.com/gliderlabs/ssh v0.3.3
github.com/go-playground/validator/v10 v10.9.0
github.com/google/go-containerregistry v0.6.0
github.com/juju/ratelimit v1.0.1
github.com/pborman/getopt/v2 v2.1.0
github.com/sebdah/goldie/v2 v2.5.3
github.com/spf13/afero v1.6.0
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
golang.org/x/crypto v0.17.0
google.golang.org/protobuf v1.33.0
gopkg.in/yaml.v2 v2.4.0
mvdan.cc/sh/v3 v3.4.2
sigs.k8s.io/yaml v1.3.0
)
require (
github.com/containerd/stargz-snapshotter/estargz v0.7.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/klauspost/compress v1.13.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)