sshpoke/go.mod

61 lines
2.4 KiB
Modula-2
Raw Normal View History

2023-11-16 20:09:40 +03:00
module github.com/Neur0toxine/sshpoke
go 1.21.4
require (
github.com/docker/docker v24.0.7+incompatible
github.com/docker/go-connections v0.4.0
2023-11-17 20:39:00 +03:00
github.com/go-playground/validator/v10 v10.16.0
github.com/kevinburke/ssh_config v1.2.0
2023-11-16 20:09:40 +03:00
github.com/mitchellh/mapstructure v1.5.0
github.com/spf13/cast v1.5.1
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.17.0
go.uber.org/zap v1.26.0
2023-11-17 20:53:52 +03:00
golang.design/x/lockfree v0.0.1
2023-11-17 20:39:00 +03:00
golang.org/x/crypto v0.13.0
google.golang.org/grpc v1.58.2
google.golang.org/protobuf v1.31.0
2023-11-16 20:09:40 +03:00
)
require (
github.com/Microsoft/go-winio v0.6.1 // indirect
2023-11-17 20:53:52 +03:00
github.com/changkun/lockfree v0.0.1 // indirect
2023-11-16 20:09:40 +03:00
github.com/distribution/reference v0.5.0 // indirect
github.com/docker/distribution v2.8.3+incompatible // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
2023-11-17 20:39:00 +03:00
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
2023-11-16 20:09:40 +03:00
github.com/gogo/protobuf v1.3.2 // indirect
2023-11-17 20:39:00 +03:00
github.com/golang/protobuf v1.5.3 // indirect
2023-11-16 20:09:40 +03:00
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2023-11-17 20:39:00 +03:00
github.com/leodido/go-urn v1.2.4 // indirect
2023-11-16 20:09:40 +03:00
github.com/magiconair/properties v1.8.7 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sagikazarmark/locafero v0.3.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.10.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.13.0 // indirect
2023-11-17 20:39:00 +03:00
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
2023-11-16 20:09:40 +03:00
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.5.1 // indirect
)