-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
33 lines (30 loc) · 1.21 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
module github.com/astarte-platform/astarte-device-sdk-go
go 1.18
require (
github.com/astarte-platform/astarte-go v0.90.4
github.com/cenkalti/backoff/v4 v4.1.2
github.com/ispirata/paho.mqtt.golang v1.3.91-0.20220121155423-6e36d43b2ec9
github.com/stretchr/testify v1.7.0
go.mongodb.org/mongo-driver v1.8.0
gorm.io/driver/sqlite v1.2.6
gorm.io/gorm v1.22.3
)
require (
github.com/cristalhq/jwt/v3 v3.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/google/go-cmp v0.5.5 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/iancoleman/orderedmap v0.2.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.3 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-sqlite3 v1.14.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)