-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
85 lines (78 loc) · 3.73 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module github.com/chanzuckerberg/aws-oidc
go 1.21
toolchain go1.22.1
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/aws/aws-sdk-go v1.55.6
github.com/blang/semver v3.5.1+incompatible
github.com/chanzuckerberg/go-misc/aws v0.0.0-20240725203325-487be12b6b5f
github.com/chanzuckerberg/go-misc/oidc_cli v0.0.0-20240731170753-14766edc6e85
github.com/chanzuckerberg/go-misc/sets v0.0.0-20240725203325-487be12b6b5f
github.com/chanzuckerberg/go-misc/ver v0.0.0-20240731170753-14766edc6e85
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/evalphobia/logrus_sentry v0.8.2
github.com/go-errors/errors v1.5.1
github.com/golang/mock v1.6.0
github.com/gorilla/handlers v1.5.2
github.com/hashicorp/go-multierror v1.1.1
github.com/honeycombio/beeline-go v1.18.0
github.com/julienschmidt/httprouter v1.3.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/mitchellh/go-homedir v1.1.0
github.com/okta/okta-sdk-golang/v2 v2.20.0
github.com/peterhellberg/link v1.2.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
gopkg.in/ini.v1 v1.67.0
)
require (
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
github.com/chanzuckerberg/go-misc/osutil v0.0.0-20240731170753-14766edc6e85 // indirect
github.com/chanzuckerberg/go-misc/pidlock v0.0.0-20240725203325-487be12b6b5f // indirect
github.com/creack/pty v1.1.18 // indirect
github.com/danieljoos/wincred v1.2.2 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
github.com/facebookgo/limitgroup v0.0.0-20150612190941-6abd8d71ec01 // indirect
github.com/facebookgo/muster v0.0.0-20150708232844-fd3d7953fd52 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/getsentry/raven-go v0.2.0 // indirect
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/honeycombio/libhoney-go v1.24.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/nightlyone/lockfile v1.0.0 // indirect
github.com/patrickmn/go-cache v0.0.0-20180815053127-5633e0862627 // indirect
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/pquerna/cachecontrol v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/zalando/go-keyring v0.2.5 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/grpc v1.65.0 // indirect
gopkg.in/alexcesaro/statsd.v2 v2.0.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
// breaking change for mac keychains
exclude github.com/zalando/go-keyring v0.2.0
exclude github.com/zalando/go-keyring v0.2.1
replace github.com/zalando/go-keyring => github.com/zalando/go-keyring v0.1.1