-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
32 lines (29 loc) · 998 Bytes
/
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
module github.com/lab5e/aqserver
go 1.19
require (
github.com/eclipse/paho.mqtt.golang v1.4.2
github.com/go-sql-driver/mysql v1.7.0
github.com/golang/protobuf v1.5.3 // indirect
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/jessevdk/go-flags v1.5.0
github.com/jmoiron/sqlx v1.3.5
github.com/lab5e/go-spanapi/v4 v4.4.2
github.com/mattn/go-sqlite3 v1.14.16
github.com/sgreben/piecewiselinear v1.1.1
github.com/stretchr/testify v1.8.2
google.golang.org/protobuf v1.30.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eclipse/paho.golang v0.11.0 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/oauth2 v0.7.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)