This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
go.mod
38 lines (35 loc) · 1.65 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
module github.com/giantswarm/mayu
go 1.14
require (
github.com/coreos/etcd v3.3.15+incompatible
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/form3tech-oss/jwt-go v3.2.5+incompatible // indirect
github.com/giantswarm/mayu-infopusher v1.0.1
github.com/giantswarm/microerror v0.0.0-20191011121515-e0ebc4ecf5a5
github.com/giantswarm/micrologger v0.0.0-20191014091141-d866337f7393
github.com/google/uuid v1.0.0 // indirect
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.5 // indirect
github.com/juju/errgo v0.0.0-20140925100237-08cceb5d0b53 // indirect
github.com/prometheus/client_golang v1.11.0
github.com/spf13/cobra v0.0.7
github.com/spf13/pflag v1.0.5
go.etcd.io/bbolt v1.3.5 // indirect
go.uber.org/zap v1.14.1 // indirect
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125
google.golang.org/grpc v1.26.0 // indirect
gopkg.in/yaml.v2 v2.4.0
sigs.k8s.io/yaml v1.1.0 // indirect
)
replace (
github.com/coreos/bbolt => go.etcd.io/bbolt v1.3.3
github.com/coreos/etcd v3.3.15+incompatible => github.com/coreos/etcd v3.3.25+incompatible
github.com/dgrijalva/jwt-go => github.com/form3tech-oss/jwt-go v3.2.1+incompatible
github.com/gogo/protobuf v1.2.1 => github.com/gogo/protobuf v1.3.2
github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c => github.com/gorilla/websocket v1.4.2
github.com/gorilla/websocket v1.4.0 => github.com/gorilla/websocket v1.4.2
)