-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgo.mod
62 lines (59 loc) · 2.8 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
module mosn.io/envoy-go-extension
go 1.18
require (
github.com/cncf/xds/go v0.0.0-20220520190051-1e77728a1eaa
google.golang.org/protobuf v1.28.1
mosn.io/api v1.2.1
mosn.io/mosn v1.2.0
mosn.io/pkg v1.2.1
)
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/alibaba/sentinel-golang v1.0.2-0.20210112133552-db6063eb263e // indirect
github.com/andybalholm/brotli v1.0.2 // indirect
github.com/antlr/antlr4 v0.0.0-20200503195918-621b933c7a7f // indirect
github.com/apache/dubbo-go-hessian2 v1.10.2 // indirect
github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/dchest/siphash v1.2.1 // indirect
github.com/dubbogo/gost v1.11.16 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-resty/resty/v2 v2.6.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.0 // indirect
github.com/google/cel-go v0.5.1 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/hashicorp/go-syslog v1.0.0 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/klauspost/compress v1.13.4 // indirect
github.com/miekg/dns v1.1.25 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/opentrx/seata-golang/v2 v2.0.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shirou/gopsutil/v3 v3.20.11 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/trainyao/go-maglev v0.0.0-20200611125015-4c1ae64d96a8 // indirect
github.com/urfave/cli v1.22.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.14.1-0.20200605121233-ac51d598dc54 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/automaxprocs v1.3.0 // indirect
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
golang.org/x/text v0.3.4 // indirect
golang.org/x/tools v0.1.4 // indirect
google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98 // indirect
google.golang.org/grpc v1.38.0 // indirect
gopkg.in/errgo.v2 v2.1.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
mosn.io/proxy-wasm-go-host v0.2.0 // indirect
vimagination.zapto.org/byteio v0.0.0-20200222190125-d27cba0f0b10 // indirect
)