Files
rpicontrol/go.mod
Thomas Vogl a450f3162b - fix RPI crash when changing state of output pin
(reason: DetectAnyEdge() was also configured for output pins)
- version string has now also build date
- updated golang dependencies
2023-01-08 11:09:25 +01:00

18 lines
366 B
Modula-2

module rpiMqttControl
go 1.17
require (
github.com/eclipse/paho.mqtt.golang v1.4.2
github.com/sirupsen/logrus v1.9.0
github.com/stianeikeland/go-rpio/v4 v4.6.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/gorilla/websocket v1.5.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
)