-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
39 lines (36 loc) · 1.51 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
module github.com/wereliang/govoy
go 1.18
require (
github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc
github.com/envoyproxy/go-control-plane v0.10.3
github.com/fanyang01/radix v0.0.0-20160415095728-e1747dd9eeac
github.com/ghodss/yaml v1.0.0
github.com/golang/protobuf v1.5.2
github.com/stretchr/testify v1.8.0
github.com/valyala/fasthttp v1.38.0
github.com/wzshiming/xds v0.2.3
github.com/yl2chen/cidranger v1.0.2
google.golang.org/protobuf v1.28.1
istio.io/api v0.0.0-20221114224332-4cb737a75939
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/armon/go-radix v1.0.0 // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/klauspost/compress v1.15.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20221018160656-63c7b68cfc55 // indirect
google.golang.org/grpc v1.50.1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)