mirror of
https://github.com/kubernetes/client-go.git
synced 2026-01-29 21:38:35 +00:00
github.com/hashicorp/golang-lru is MPL 2 licensed, which means that anyone who distributes code or binaries that incorporates it needs to include its source code, even if they haven't made any modifications. Since lrucacheexpire is picked up as a dependency of using the shared informers in client-go, that's potentially a lot of distributors. Most other deps of client-go are Apache 2.0, MIT, or BSD-like licensed, which only requires including the license. Rather than reverting to groupcache/lru, I just reimplemented the functionality we need, which isn't much. Kubernetes-commit: ecc53182475a00a4a1dc8ca1e056b0deb6bd430c
46 lines
1.5 KiB
Modula-2
46 lines
1.5 KiB
Modula-2
// This is a generated file. Do not edit directly.
|
|
|
|
module k8s.io/client-go
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
cloud.google.com/go v0.54.0 // indirect
|
|
github.com/Azure/go-autorest/autorest v0.11.18
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.13
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/evanphx/json-patch v4.11.0+incompatible
|
|
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/google/btree v1.0.1 // indirect
|
|
github.com/google/go-cmp v0.5.5
|
|
github.com/google/gofuzz v1.1.0
|
|
github.com/google/uuid v1.1.2
|
|
github.com/googleapis/gnostic v0.5.5
|
|
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
|
|
github.com/imdario/mergo v0.3.5
|
|
github.com/peterbourgon/diskv v2.0.1+incompatible
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.7.0
|
|
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d
|
|
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
|
|
google.golang.org/protobuf v1.26.0
|
|
k8s.io/api v0.0.0
|
|
k8s.io/apimachinery v0.0.0
|
|
k8s.io/klog/v2 v2.9.0
|
|
k8s.io/utils v0.0.0-20210521133846-da695404a2bc
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.1
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|
|
|
|
replace (
|
|
k8s.io/api => ../api
|
|
k8s.io/apimachinery => ../apimachinery
|
|
k8s.io/client-go => ../client-go
|
|
)
|