2019-09-21 01:36:09 +03:00
|
|
|
module github.com/Azure/secrets-store-csi-driver-provider-azure
|
|
|
|
|
2024-10-11 01:49:29 +03:00
|
|
|
go 1.23
|
2019-09-21 01:36:09 +03:00
|
|
|
|
|
|
|
require (
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
|
2023-05-11 05:12:12 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v0.10.0
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v0.11.0
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets v0.13.0
|
2024-08-22 03:54:33 +03:00
|
|
|
github.com/Azure/go-autorest/autorest v0.11.29
|
2022-07-23 02:50:56 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0
|
2023-04-26 01:52:05 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0
|
2022-08-16 21:17:40 +03:00
|
|
|
github.com/golang/mock v1.6.0
|
2023-10-28 00:17:18 +03:00
|
|
|
github.com/google/go-cmp v0.5.9
|
2020-09-24 19:14:54 +03:00
|
|
|
github.com/pkg/errors v0.9.1
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2021-09-09 20:57:02 +03:00
|
|
|
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
|
2024-06-25 20:21:59 +03:00
|
|
|
golang.org/x/crypto v0.24.0
|
|
|
|
golang.org/x/net v0.26.0
|
2023-10-28 00:17:18 +03:00
|
|
|
google.golang.org/grpc v1.59.0
|
2022-06-22 23:52:46 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2022-10-26 02:11:05 +03:00
|
|
|
k8s.io/component-base v0.25.3
|
2023-02-09 01:45:18 +03:00
|
|
|
k8s.io/klog/v2 v2.80.1
|
2023-07-31 23:11:05 +03:00
|
|
|
sigs.k8s.io/secrets-store-csi-driver v1.3.4
|
2019-09-21 01:36:09 +03:00
|
|
|
)
|
2021-09-09 00:58:09 +03:00
|
|
|
|
|
|
|
require (
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
|
2023-05-11 05:12:12 +03:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v0.8.0 // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
2024-08-22 03:54:33 +03:00
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.22 // 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
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-10-28 00:17:18 +03:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-09-09 01:26:17 +03:00
|
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
|
|
github.com/go-logr/zapr v1.2.3 // indirect
|
2022-03-26 01:03:02 +03:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2023-05-10 08:55:02 +03:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2024-03-23 00:10:18 +03:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2023-02-09 01:45:18 +03:00
|
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
2022-02-16 20:18:57 +03:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
2024-06-25 20:21:59 +03:00
|
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2023-02-09 01:45:18 +03:00
|
|
|
github.com/prometheus/client_golang v1.12.2 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
2022-06-08 00:14:46 +03:00
|
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
2023-02-09 01:45:18 +03:00
|
|
|
github.com/spf13/cobra v1.6.1 // indirect
|
2022-03-26 01:03:02 +03:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2021-09-09 20:57:02 +03:00
|
|
|
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
|
2023-02-09 01:45:18 +03:00
|
|
|
go.uber.org/atomic v1.10.0 // indirect
|
|
|
|
go.uber.org/multierr v1.8.0 // indirect
|
|
|
|
go.uber.org/zap v1.24.0 // indirect
|
2024-06-25 20:21:59 +03:00
|
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
|
|
golang.org/x/text v0.16.0 // indirect
|
2023-10-28 00:17:18 +03:00
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
|
2024-03-23 00:10:18 +03:00
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2022-03-26 01:03:02 +03:00
|
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
2022-10-26 02:11:05 +03:00
|
|
|
k8s.io/apimachinery v0.25.3 // indirect
|
2021-09-09 00:58:09 +03:00
|
|
|
)
|