1
0
Fork 0
mirror of https://github.com/Luzifer/s3sync.git synced 2024-10-18 06:24:20 +00:00
s3sync/go.mod
Knut Ahlers 627fe09bac
Breaking: Refactor, update deps, add MinIO support
- Drop MD5 checksumming
- Replace logging to stdout
- Add Endpoint flag for MinIO support
- Switch to Go modules support

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2023-06-09 16:56:51 +02:00

19 lines
456 B
Modula-2

module github.com/Luzifer/s3sync
go 1.20
require (
github.com/Luzifer/rconfig/v2 v2.4.0
github.com/aws/aws-sdk-go v1.44.279
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
)
require (
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.8.0 // indirect
gopkg.in/validator.v2 v2.0.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)