-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
30 lines (25 loc) · 871 Bytes
/
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
module github.com/ekhabarov/bazel-k8s-envoy
go 1.23
toolchain go1.23.4
require (
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c
github.com/envoyproxy/go-control-plane v0.11.0
golang.org/x/tools v0.29.0
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4
google.golang.org/grpc v1.53.0
)
require (
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/sync v0.10.0 // indirect
)
require (
github.com/cncf/xds/go v0.0.0-20230112175826-46e39c7b9b43 // indirect
github.com/envoyproxy/protoc-gen-validate v0.9.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
golang.org/x/net v0.34.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
honnef.co/go/tools v0.5.1
)