-
Notifications
You must be signed in to change notification settings - Fork 14
/
go.mod
42 lines (37 loc) · 1.25 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
module github.com/telenornms/skogul
go 1.20
require (
github.com/eclipse/paho.mqtt.golang v1.4.3
github.com/go-sql-driver/mysql v1.6.0
github.com/gogo/protobuf v1.3.2
github.com/lib/pq v1.10.9
github.com/segmentio/kafka-go v0.4.47
github.com/sirupsen/logrus v1.9.3
google.golang.org/protobuf v1.34.1
)
require (
github.com/dolmen-go/jsonptr v0.0.0-20240328010033-38530b85cd9c
github.com/hamba/avro/v2 v2.22.1
github.com/nats-io/nats.go v1.35.0
github.com/rabbitmq/amqp091-go v1.10.0
)
require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nats-io/nkeys v0.4.7 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
golang.org/x/crypto v0.23.0 // indirect
)
require (
github.com/gorilla/websocket v1.5.1 // indirect
github.com/gosnmp/gosnmp v1.37.0
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.17.8 // 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.21 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.54.0
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.20.0 // indirect
)