-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
46 lines (43 loc) · 1.65 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
46
module github.com/eclipse-kanto/suite-connector
go 1.17
require (
github.com/Jeffail/gabs/v2 v2.6.0
github.com/ThreeDotsLabs/watermill v1.3.2
github.com/caarlos0/env/v6 v6.10.1
github.com/cenkalti/backoff/v3 v3.2.2
github.com/eclipse-kanto/kanto/integration/util v0.0.0-20221202082137-517d8d8a8766
github.com/eclipse/ditto-clients-golang v0.0.0-20220225085802-cf3b306280d3
github.com/eclipse/paho.mqtt.golang v1.4.1
github.com/fsnotify/fsnotify v1.5.1
github.com/google/go-tpm v0.9.0
github.com/hashicorp/go-multierror v1.1.1
github.com/imdario/mergo v0.3.12
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.4
github.com/tevino/abool/v2 v2.0.1
github.com/tidwall/sjson v1.2.5
go.uber.org/goleak v1.1.10
golang.org/x/time v0.5.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/tidwall/gjson v1.14.2 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // 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/tools v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)