Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
IngoRoessner committed Jan 5, 2024
1 parent 4576455 commit 443ec64
Show file tree
Hide file tree
Showing 3 changed files with 193 additions and 602 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19 AS builder
FROM golang:1.21 AS builder

COPY . /go/src/app
WORKDIR /go/src/app
Expand Down
54 changes: 27 additions & 27 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
module github.com/SENERGY-Platform/live-data-worker

go 1.19
go 1.21

toolchain go1.21.5

require (
github.com/SENERGY-Platform/device-command v0.0.0-20220919123405-6eb80738a9a4
github.com/SENERGY-Platform/external-task-worker v0.0.0-20220823072226-6c42d5cf2485
github.com/eclipse/paho.mqtt.golang v1.4.1
github.com/SENERGY-Platform/device-command v1.0.7
github.com/SENERGY-Platform/external-task-worker v0.0.3
github.com/eclipse/paho.mqtt.golang v1.4.3
github.com/hashicorp/go-uuid v1.0.3
github.com/julienschmidt/httprouter v1.3.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/segmentio/kafka-go v0.4.15
golang.org/x/exp v0.0.0-20220927162542-c76eaa363f9d
github.com/segmentio/kafka-go v0.4.47
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc
)

require (
github.com/IBM/sarama v1.42.1 // indirect
github.com/Knetic/govaluate v3.0.0+incompatible // indirect
github.com/RyanCarrier/dijkstra v1.1.0 // indirect
github.com/SENERGY-Platform/converter v0.0.0-20220810123448-27fbbf6ab679 // indirect
github.com/SENERGY-Platform/marshaller v0.0.0-20220823070456-9df7dd3f42e5 // indirect
github.com/Shopify/sarama v1.37.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/RyanCarrier/dijkstra v1.3.0 // indirect
github.com/SENERGY-Platform/converter v0.0.4 // indirect
github.com/SENERGY-Platform/marshaller v0.0.3 // indirect
github.com/SENERGY-Platform/models/go v0.0.0-20230824080159-16585960df38 // indirect
github.com/SENERGY-Platform/service-commons v0.0.0-20231115074650-7021aeae60e4 // indirect
github.com/clbanning/mxj v1.8.4 // indirect
github.com/coocood/freecache v1.2.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eapache/go-resiliency v1.3.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
github.com/eapache/go-resiliency v1.5.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/golang-jwt/jwt v3.2.1+incompatible // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
github.com/jcmturner/gokrb5/v8 v8.4.3 // indirect
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
github.com/pierrec/lz4/v4 v4.1.17 // indirect
github.com/klauspost/compress v1.17.4 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/pierrec/lz4/v4 v4.1.19 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/satori/go.uuid v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/net v0.0.0-20220927171203-f486391704dc // indirect
golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sync v0.6.0 // indirect
gopkg.in/go-playground/colors.v1 v1.2.0 // indirect
)
Loading

0 comments on commit 443ec64

Please sign in to comment.