-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 803 Bytes
/
Copy pathgo.mod
File metadata and controls
24 lines (21 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/nehemming/oauthproxy
go 1.16
require (
github.com/hashicorp/go-multierror v1.1.1
github.com/kr/text v0.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/nehemming/cirocket v0.1.1
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
golang.org/x/net v0.7.0
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602
google.golang.org/protobuf v1.27.1 // indirect
)
// Clean up of Vulnerable Dependencies
// go list -json -m all | nancy sleuth --quiet
replace (
github.com/coreos/bbolt v1.3.6 => go.etcd.io/bbolt v1.3.6
github.com/coreos/etcd v3.3.13+incompatible => go.etcd.io/bbolt v1.3.6
github.com/coreos/etcd/v3 v3.5.0 => go.etcd.io/etcd/v3 v3.5.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible => github.com/golang-jwt/jwt v3.2.1+incompatible
)