mirror of
https://github.com/int128/kubelogin.git
synced 2026-02-14 16:39:51 +00:00
62 lines
2.3 KiB
Modula-2
62 lines
2.3 KiB
Modula-2
module github.com/int128/kubelogin
|
|
|
|
go 1.22.2
|
|
|
|
require (
|
|
github.com/alexflint/go-filemutex v1.3.0
|
|
github.com/chromedp/chromedp v0.10.0
|
|
github.com/coreos/go-oidc/v3 v3.11.0
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/google/go-cmp v0.6.0
|
|
github.com/google/wire v0.6.0
|
|
github.com/int128/oauth2cli v1.14.0
|
|
github.com/int128/oauth2dev v1.0.1
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
|
|
github.com/spf13/cobra v1.8.1
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.9.0
|
|
golang.org/x/oauth2 v0.22.0
|
|
golang.org/x/sync v0.8.0
|
|
golang.org/x/term v0.23.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
k8s.io/apimachinery v0.31.0
|
|
k8s.io/client-go v0.31.0
|
|
k8s.io/klog/v2 v2.130.1
|
|
)
|
|
|
|
require (
|
|
github.com/chromedp/cdproto v0.0.0-20240801214329-3f85d328b335 // indirect
|
|
github.com/chromedp/sysutil v1.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
github.com/gobwas/ws v1.4.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/imdario/mergo v0.3.6 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/int128/listener v1.1.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
golang.org/x/crypto v0.25.0 // indirect
|
|
golang.org/x/net v0.27.0 // indirect
|
|
golang.org/x/sys v0.23.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
golang.org/x/time v0.3.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
|
|
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|