2021-08-21 19:05:49 +02:00
|
|
|
module github.com/offen/docker-volume-backup
|
|
|
|
|
2023-08-10 16:03:59 +02:00
|
|
|
go 1.21
|
2021-08-21 19:05:49 +02:00
|
|
|
|
2021-08-22 16:41:06 +02:00
|
|
|
require (
|
2024-01-22 22:30:30 +01:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1
|
2023-12-18 22:25:04 +01:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.1
|
2023-04-29 20:14:04 +02:00
|
|
|
github.com/containrrr/shoutrrr v0.7.1
|
2022-02-23 10:12:57 +01:00
|
|
|
github.com/cosiner/argv v0.1.0
|
2024-01-26 20:55:17 +01:00
|
|
|
github.com/docker/cli v24.0.1+incompatible
|
2023-10-30 19:10:44 +01:00
|
|
|
github.com/docker/docker v24.0.7+incompatible
|
2021-08-23 18:46:49 +02:00
|
|
|
github.com/gofrs/flock v0.8.1
|
2023-12-05 07:40:04 +01:00
|
|
|
github.com/klauspost/compress v1.17.4
|
2021-08-22 21:06:51 +02:00
|
|
|
github.com/leekchan/timeutil v0.0.0-20150802142658-28917288c48d
|
2023-12-18 22:24:27 +01:00
|
|
|
github.com/minio/minio-go/v7 v7.0.66
|
2023-08-30 20:14:24 +02:00
|
|
|
github.com/offen/envconfig v1.5.0
|
2023-10-03 09:12:56 +02:00
|
|
|
github.com/otiai10/copy v1.14.0
|
2023-08-15 06:38:55 +02:00
|
|
|
github.com/pkg/sftp v1.13.6
|
2023-06-27 09:46:34 +02:00
|
|
|
github.com/studio-b12/gowebdav v0.9.0
|
2024-01-09 06:46:30 +01:00
|
|
|
golang.org/x/crypto v0.18.0
|
|
|
|
golang.org/x/oauth2 v0.16.0
|
2024-01-09 07:03:13 +01:00
|
|
|
golang.org/x/sync v0.6.0
|
2021-08-22 16:41:06 +02:00
|
|
|
)
|
2021-08-21 19:05:49 +02:00
|
|
|
|
2023-08-24 19:33:47 +02:00
|
|
|
require (
|
2024-01-26 15:59:30 +01:00
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
|
2024-01-08 18:05:11 +01:00
|
|
|
github.com/cloudflare/circl v1.3.7 // indirect
|
2024-01-22 22:30:30 +01:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.0 // indirect
|
2023-09-19 08:39:24 +02:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2024-01-26 15:59:30 +01:00
|
|
|
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
|
2023-08-24 19:33:47 +02:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-09-19 08:39:24 +02:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2023-08-24 19:33:47 +02:00
|
|
|
)
|
|
|
|
|
2021-08-21 19:05:49 +02:00
|
|
|
require (
|
2023-12-18 22:25:04 +01:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1 // indirect
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect
|
2024-01-22 22:30:30 +01:00
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.1 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
2024-01-22 22:30:42 +01:00
|
|
|
github.com/ProtonMail/go-crypto v1.1.0-alpha.0
|
2023-05-11 23:07:45 +02:00
|
|
|
github.com/docker/distribution v2.8.2+incompatible // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
|
|
github.com/docker/go-units v0.4.0 // indirect
|
2023-08-24 19:33:47 +02:00
|
|
|
github.com/dropbox/dropbox-sdk-go-unofficial/v6 v6.0.5
|
2023-06-13 09:03:38 +02:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2023-04-29 20:14:04 +02:00
|
|
|
github.com/fatih/color v1.13.0 // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2023-12-18 22:24:27 +01:00
|
|
|
github.com/google/uuid v1.5.0 // indirect
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
2023-12-18 22:24:27 +01:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
|
2023-09-03 16:49:52 +02:00
|
|
|
github.com/klauspost/pgzip v1.2.6
|
2022-06-17 11:06:15 +02:00
|
|
|
github.com/kr/fs v0.1.0 // indirect
|
2023-01-11 21:40:48 +01:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2023-04-29 20:14:04 +02:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
2023-06-13 09:03:38 +02:00
|
|
|
github.com/minio/sha256-simd v1.0.1 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/moby/term v0.0.0-20200312100748-672ec06f55cd // indirect
|
2021-08-21 21:26:27 +02:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
|
2024-01-22 22:30:30 +01:00
|
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-06-13 09:03:38 +02:00
|
|
|
github.com/rs/xid v1.5.0 // indirect
|
2023-08-10 19:41:03 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
2024-01-09 06:46:30 +01:00
|
|
|
golang.org/x/net v0.20.0 // indirect
|
|
|
|
golang.org/x/sys v0.16.0 // indirect
|
2023-11-14 06:53:23 +01:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
2022-11-21 20:30:13 +01:00
|
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
2023-04-05 06:58:07 +02:00
|
|
|
gotest.tools/v3 v3.0.3 // indirect
|
2021-08-21 21:26:27 +02:00
|
|
|
)
|