-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
74 lines (69 loc) · 2.87 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
63
64
65
66
67
68
69
70
71
72
73
74
module go.aporeto.io/bahamut
go 1.22
toolchain go1.22.2
require (
go.aporeto.io/elemental v1.123.1-0.20240822212917-6f8c7be6698c
go.aporeto.io/tg v1.50.0
go.aporeto.io/wsc v1.51.0
)
require (
github.com/NYTimes/gziphandler v1.1.1
github.com/armon/go-proxyproto v0.0.0-20210323213023-7e956b284f0a
github.com/cespare/xxhash v1.1.0
github.com/go-zoo/bone v1.3.0
github.com/gofrs/uuid v4.4.0+incompatible
github.com/golang/mock v1.6.0
github.com/gorilla/websocket v1.5.0
github.com/karlseguin/ccache/v2 v2.0.8
github.com/mailgun/multibuf v0.1.2
github.com/nats-io/nats-server/v2 v2.9.11
github.com/nats-io/nats.go v1.23.0
github.com/opentracing/opentracing-go v1.2.0
github.com/prometheus/client_golang v1.14.0
github.com/shirou/gopsutil/v3 v3.23.1
github.com/smartystreets/goconvey v1.7.2
github.com/valyala/tcplisten v1.0.0
github.com/vulcand/oxy/v2 v2.0.0-20221121151423-d5cb734e4467
go.uber.org/zap v1.24.0
golang.org/x/time v0.3.0
)
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
github.com/gravitational/trace v1.2.1 // indirect
github.com/jonboulle/clockwork v0.3.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/lufia/plan9stats v0.0.0-20230110061619-bbe2e5e100de // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/minio/highwayhash v1.0.2 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/nats-io/jwt/v2 v2.3.0 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.39.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/smartystreets/assertions v1.2.0 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
github.com/ugorji/go/codec v1.2.9 // indirect
github.com/vulcand/predicate v1.2.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.mongodb.org/mongo-driver v1.16.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)