2019-09-21 01:36:09 +03:00
|
|
|
module github.com/Azure/secrets-store-csi-driver-provider-azure
|
|
|
|
|
2021-09-09 00:58:09 +03:00
|
|
|
go 1.17
|
2019-09-21 01:36:09 +03:00
|
|
|
|
|
|
|
require (
|
2022-01-27 21:57:30 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go v61.3.0+incompatible
|
|
|
|
github.com/Azure/go-autorest/autorest v0.11.24
|
2022-01-03 23:00:14 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.18
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/google/go-cmp v0.5.5
|
2020-09-24 19:14:54 +03:00
|
|
|
github.com/pkg/errors v0.9.1
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/stretchr/testify v1.7.0
|
|
|
|
go.opentelemetry.io/otel v0.20.0
|
|
|
|
go.opentelemetry.io/otel/exporters/metric/prometheus v0.20.0
|
|
|
|
go.opentelemetry.io/otel/metric v0.20.0
|
2022-01-27 21:57:30 +03:00
|
|
|
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
|
|
|
|
golang.org/x/net v0.0.0-20211209124913-491a49abca63
|
|
|
|
google.golang.org/grpc v1.39.1
|
2021-09-09 20:57:02 +03:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2022-01-27 21:57:30 +03:00
|
|
|
k8s.io/component-base v0.22.6
|
2021-11-02 02:57:23 +03:00
|
|
|
k8s.io/klog/v2 v2.10.0
|
2022-01-27 21:57:30 +03:00
|
|
|
sigs.k8s.io/secrets-store-csi-driver v1.0.1
|
2019-09-21 01:36:09 +03:00
|
|
|
)
|
2021-09-09 00:58:09 +03:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
2022-01-03 23:00:14 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/go-logr/logr v0.4.0 // indirect
|
2022-01-27 21:57:30 +03:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/prometheus/client_golang v1.11.0 // indirect
|
|
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk v0.20.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/trace v0.20.0 // indirect
|
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
|
|
go.uber.org/zap v1.17.0 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
|
|
|
|
golang.org/x/text v0.3.6 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
|
|
|
|
google.golang.org/protobuf v1.26.0 // indirect
|
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
)
|