forked from telenornms/skogul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
45 lines (40 loc) · 1.44 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
module github.com/telenornms/skogul
go 1.20
require (
github.com/eclipse/paho.mqtt.golang v1.4.1
github.com/go-sql-driver/mysql v1.6.0
github.com/gogo/protobuf v1.3.2
github.com/lib/pq v1.10.6
github.com/segmentio/kafka-go v0.4.32
github.com/sirupsen/logrus v1.9.0
google.golang.org/protobuf v1.28.1
)
require (
github.com/dolmen-go/jsonptr v0.0.0-20220904212016-e3f38a361346
github.com/hamba/avro/v2 v2.16.0
github.com/nats-io/nats.go v1.28.0
github.com/rabbitmq/amqp091-go v1.8.1
)
require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nats-io/nats-server/v2 v2.9.23 // indirect
github.com/nats-io/nkeys v0.4.6 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
golang.org/x/crypto v0.14.0 // indirect
)
require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/gosnmp/gosnmp v1.35.0
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pierrec/lz4/v4 v4.1.15 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.37.0
golang.org/x/net v0.17.0 // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/sys v0.13.0 // indirect
)