-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ce2770
commit 0c19c1f
Showing
12 changed files
with
331 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea | ||
*.iml | ||
process-sync | ||
kafka2mqtt-manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,74 @@ | ||
module github.com/SENERGY-Platform/kafka2mqtt-manager | ||
|
||
go 1.17 | ||
go 1.23 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.0 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v1.13.1 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/docker/docker v25.0.4+incompatible | ||
github.com/docker/go-connections v0.5.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/elazarl/goproxy v0.0.0-20210110162100-a92cc753f88e // indirect | ||
github.com/hashicorp/go-uuid v1.0.2 | ||
github.com/hashicorp/go-uuid v1.0.3 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/parnurzeal/gorequest v0.2.16 | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/smartystreets/goconvey v1.6.4 // indirect | ||
go.mongodb.org/mongo-driver v1.5.1 | ||
golang.org/x/net v0.0.0-20210427231257-85d9c07bbe3a // indirect | ||
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect | ||
go.mongodb.org/mongo-driver v1.17.1 | ||
golang.org/x/net v0.32.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
moul.io/http2curl v1.0.0 // indirect | ||
) | ||
|
||
require github.com/SENERGY-Platform/permissions-v2 v0.0.27 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.34.28 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/klauspost/compress v1.9.5 // indirect | ||
github.com/KyleBanks/depth v1.2.1 // indirect | ||
github.com/SENERGY-Platform/developer-notifications v0.0.4 // indirect | ||
github.com/SENERGY-Platform/service-commons v0.0.0-20240813072046-91b3195dd8fc // indirect | ||
github.com/distribution/reference v0.5.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/spec v0.20.6 // indirect | ||
github.com/go-openapi/swag v0.19.15 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.21 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/segmentio/kafka-go v0.4.47 // indirect | ||
github.com/swaggo/files v0.0.0-20220610200504-28940afbdbfe // indirect | ||
github.com/swaggo/http-swagger v1.3.4 // indirect | ||
github.com/swaggo/swag v1.16.3 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.0.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.2 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073 // indirect | ||
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect | ||
go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect | ||
go.opentelemetry.io/otel v1.33.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.33.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.33.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.33.0 // indirect | ||
golang.org/x/crypto v0.30.0 // indirect | ||
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/time v0.8.0 // indirect | ||
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gotest.tools/v3 v3.5.1 // indirect | ||
) |
Oops, something went wrong.