-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
41 lines (38 loc) · 1.51 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
module github.com/eclipse-kanto/local-digital-twins
go 1.17
require (
github.com/Jeffail/gabs/v2 v2.6.1
github.com/ThreeDotsLabs/watermill v1.1.1
github.com/caarlos0/env/v6 v6.10.1
github.com/eclipse-kanto/kanto/integration/util v0.0.0-20230323152903-9d6570b21206
github.com/eclipse-kanto/suite-connector v0.1.0-M2.0.20230222081206-577d4deaa329
github.com/eclipse/ditto-clients-golang v0.0.0-20220225085802-cf3b306280d3
github.com/google/uuid v1.3.0
github.com/imdario/mergo v0.3.12
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.1
go.etcd.io/bbolt v1.3.6
go.uber.org/goleak v1.1.12
)
require (
github.com/cenkalti/backoff/v3 v3.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eclipse/paho.mqtt.golang v1.4.1 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-tpm v0.3.2 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.0.0 // indirect
github.com/lithammer/shortuuid/v3 v3.0.4 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tevino/abool/v2 v2.0.1 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.21.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)