2021-08-21 19:05:49 +02:00
|
|
|
module github.com/offen/docker-volume-backup
|
|
|
|
|
2022-09-01 15:12:48 +02:00
|
|
|
go 1.19
|
2021-08-21 19:05:49 +02:00
|
|
|
|
2021-08-22 16:41:06 +02:00
|
|
|
require (
|
2023-01-11 21:40:48 +01:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.6.1
|
2023-02-14 19:57:32 +01:00
|
|
|
github.com/containrrr/shoutrrr v0.6.0
|
2022-02-23 10:12:57 +01:00
|
|
|
github.com/cosiner/argv v0.1.0
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/docker/docker v20.10.11+incompatible
|
2021-08-23 18:46:49 +02:00
|
|
|
github.com/gofrs/flock v0.8.1
|
2021-08-24 09:01:44 +02:00
|
|
|
github.com/kelseyhightower/envconfig v1.4.0
|
2021-08-22 21:06:51 +02:00
|
|
|
github.com/leekchan/timeutil v0.0.0-20150802142658-28917288c48d
|
2022-11-21 20:30:13 +01:00
|
|
|
github.com/minio/minio-go/v7 v7.0.44
|
2021-11-29 08:40:55 +01:00
|
|
|
github.com/otiai10/copy v1.7.0
|
2022-06-17 11:06:15 +02:00
|
|
|
github.com/pkg/sftp v1.13.5
|
2022-11-21 20:30:13 +01:00
|
|
|
github.com/sirupsen/logrus v1.9.0
|
2022-04-20 10:56:26 +02:00
|
|
|
github.com/studio-b12/gowebdav v0.0.0-20220128162035-c7b1ff8a5e62
|
2022-11-21 20:30:13 +01:00
|
|
|
golang.org/x/crypto v0.3.0
|
2022-06-07 09:21:40 +02:00
|
|
|
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
|
2021-08-22 16:41:06 +02:00
|
|
|
)
|
2021-08-21 19:05:49 +02:00
|
|
|
|
|
|
|
require (
|
2023-01-11 21:40:48 +01:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.4 // indirect
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.1 // indirect
|
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
2023-02-16 20:32:46 +01:00
|
|
|
github.com/containerd/containerd v1.6.18 // indirect
|
2023-03-07 07:56:56 +01:00
|
|
|
github.com/docker/distribution v2.8.0+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
|
2021-08-21 21:26:27 +02:00
|
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
2021-12-17 08:31:28 +01:00
|
|
|
github.com/fatih/color v1.10.0 // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2023-01-11 21:40:48 +01:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/gorilla/mux v1.7.3 // indirect
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
2022-11-21 20:30:13 +01:00
|
|
|
github.com/klauspost/compress v1.15.12 // indirect
|
|
|
|
github.com/klauspost/cpuid/v2 v2.2.1 // indirect
|
2022-06-17 11:06:15 +02:00
|
|
|
github.com/kr/fs v0.1.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2023-01-11 21:40:48 +01:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2021-12-17 08:31:28 +01:00
|
|
|
github.com/mattn/go-colorable v0.1.8 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
2021-11-28 20:12:23 +01:00
|
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
|
|
github.com/minio/sha256-simd v1.0.0 // 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-12-17 08:31:28 +01:00
|
|
|
github.com/onsi/gomega v1.10.3 // 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
|
2023-01-11 21:40:48 +01:00
|
|
|
github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4 // indirect
|
2021-08-21 19:05:49 +02:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2022-11-21 20:30:13 +01:00
|
|
|
github.com/rs/xid v1.4.0 // indirect
|
2023-02-18 07:34:40 +01:00
|
|
|
golang.org/x/net v0.7.0 // indirect
|
|
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
|
|
golang.org/x/text v0.7.0 // indirect
|
2022-06-07 09:21:40 +02:00
|
|
|
google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 // indirect
|
|
|
|
google.golang.org/grpc v1.47.0 // indirect
|
|
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
|
|
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
|
2021-08-21 21:26:27 +02:00
|
|
|
)
|