mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00

* Refactoring name convention * Added integration test * Added Makefile * Bump golang.org/x/crypto from 0.0.0-20220826181053-bd7e27e6170d to 0.6.0 Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20220826181053-bd7e27e6170d to 0.6.0. - [Release notes](https://github.com/golang/crypto/releases) - [Commits](https://github.com/golang/crypto/commits/v0.6.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production update-type: version-update:semver-minor ... * Upgrade go from 1.16 to 1.20 * Added integration test: HTTP, TCP, SSH * Added Makefile Improve README.md * Fixed unit test CI * Fixed go-version * Added integration test into C.I. actions --------- Signed-off-by: Mario Candela <m4r10.php@gmail.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
803 B
Modula-2
29 lines
803 B
Modula-2
module beelzebub
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/gliderlabs/ssh v0.3.5
|
|
github.com/go-resty/resty/v2 v2.7.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/jarcoal/httpmock v1.3.0
|
|
github.com/rabbitmq/amqp091-go v1.7.0
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/stretchr/testify v1.8.1
|
|
golang.org/x/crypto v0.6.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/kr/fs v0.1.0 // indirect
|
|
github.com/melbahja/goph v1.3.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pkg/sftp v1.13.5 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/net v0.6.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/term v0.5.0 // indirect
|
|
)
|