forked from hypnoglow/helm-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
24 lines (21 loc) · 735 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/hypnoglow/helm-s3
go 1.15
// See: https://github.com/helm/helm/issues/9354
replace (
github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
github.com/docker/docker => github.com/moby/moby v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible
)
require (
github.com/Masterminds/semver v1.5.0
github.com/Masterminds/semver/v3 v3.1.1
github.com/aws/aws-sdk-go v1.37.18
github.com/ghodss/yaml v1.0.0
github.com/google/go-cmp v0.5.2
github.com/minio/minio-go/v6 v6.0.40
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
helm.sh/helm/v3 v3.5.2
k8s.io/helm v2.17.0+incompatible
sigs.k8s.io/yaml v1.2.0
)