2024-01-11 19:38:13 +01:00
|
|
|
module github.com/jkaninda/mysql-bkup
|
|
|
|
|
|
2024-08-03 16:03:17 +02:00
|
|
|
go 1.22.5
|
2024-01-19 05:31:30 +01:00
|
|
|
|
|
|
|
|
require github.com/spf13/pflag v1.0.5
|
|
|
|
|
|
|
|
|
|
require (
|
2024-10-08 23:02:46 +02:00
|
|
|
github.com/ProtonMail/gopenpgp/v2 v2.7.5
|
2024-08-03 16:03:17 +02:00
|
|
|
github.com/aws/aws-sdk-go v1.55.3
|
|
|
|
|
github.com/bramvdbogaerde/go-scp v1.5.0
|
|
|
|
|
github.com/hpcloud/tail v1.0.0
|
2024-10-08 23:02:46 +02:00
|
|
|
github.com/jlaffaye/ftp v0.2.0
|
|
|
|
|
github.com/robfig/cron/v3 v3.0.1
|
2024-08-03 16:03:17 +02:00
|
|
|
github.com/spf13/cobra v1.8.0
|
|
|
|
|
golang.org/x/crypto v0.18.0
|
2024-10-09 12:23:14 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2024-08-03 16:03:17 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2024-10-08 23:02:46 +02:00
|
|
|
github.com/ProtonMail/go-crypto v0.0.0-20230717121422-5aa5874ade95 // indirect
|
|
|
|
|
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
|
|
|
|
|
github.com/cloudflare/circl v1.3.3 // indirect
|
2024-10-09 22:31:52 +02:00
|
|
|
github.com/go-mail/mail v2.3.1+incompatible // indirect
|
2024-09-30 00:40:35 +02:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2024-01-19 05:31:30 +01:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2024-10-13 14:33:54 +02:00
|
|
|
github.com/jkaninda/encryptor v0.0.0-20241013064832-ed4bd6a1b221 // indirect
|
2024-08-03 16:03:17 +02:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
2024-10-08 23:02:46 +02:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2024-07-28 22:54:31 +02:00
|
|
|
golang.org/x/sys v0.22.0 // indirect
|
2024-10-08 23:02:46 +02:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2024-10-09 22:31:52 +02:00
|
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
2024-07-28 22:54:31 +02:00
|
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
2024-01-18 14:19:27 +01:00
|
|
|
)
|