2022-05-08 20:49:53 +02:00
|
|
|
module beelzebub
|
|
|
|
|
2023-02-26 18:04:05 +01:00
|
|
|
go 1.20
|
2022-05-08 20:49:53 +02:00
|
|
|
|
|
|
|
require (
|
2022-09-05 10:58:41 +02:00
|
|
|
github.com/gliderlabs/ssh v0.3.5
|
2022-12-16 23:02:16 +01:00
|
|
|
github.com/go-resty/resty/v2 v2.7.0
|
2022-07-23 00:41:14 +02:00
|
|
|
github.com/google/uuid v1.3.0
|
2023-02-09 18:06:39 +01:00
|
|
|
github.com/jarcoal/httpmock v1.3.0
|
2023-02-26 18:09:25 +01:00
|
|
|
github.com/melbahja/goph v1.3.1
|
2023-02-16 20:27:32 +01:00
|
|
|
github.com/rabbitmq/amqp091-go v1.7.0
|
2022-07-23 00:41:14 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.0
|
2022-10-26 11:47:08 +02:00
|
|
|
github.com/stretchr/testify v1.8.1
|
2023-02-26 18:04:05 +01:00
|
|
|
golang.org/x/crypto v0.6.0
|
2022-07-26 04:44:46 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2022-05-08 20:49:53 +02:00
|
|
|
)
|
2023-02-26 18:04:05 +01:00
|
|
|
|
|
|
|
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/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/pkg/sftp v1.13.5 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2023-02-26 18:09:25 +01:00
|
|
|
golang.org/x/net v0.7.0 // indirect
|
2023-02-26 18:04:05 +01:00
|
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
|
|
golang.org/x/term v0.5.0 // indirect
|
|
|
|
)
|