Files
hapz2m/go.mod
Darell Tan 48eabc2342 Mark old last_seen devices as "not responding"
Devices that have not received an update since a fixed timeout (24 hrs
for now), based on its last_seen time, will be marked as "not
responding" in the Home app. With this I can identify which devices are
unreachable or dead.

Also needed to upgrade hap with the fix for brutella/hap#30, or the
entire bridge will stop working.
2023-05-22 22:38:20 +08:00

25 lines
746 B
Modula-2

module hapz2m
go 1.20
require (
github.com/brutella/hap v0.0.27-0.20230522083132-4ea1de40019c
github.com/eclipse/paho.mqtt.golang v1.4.2
)
require (
github.com/brutella/dnssd v1.2.7 // indirect
github.com/go-chi/chi v1.5.4 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/miekg/dns v1.1.53 // indirect
github.com/tadglines/go-pkgs v0.0.0-20210623144937-b983b20f54f9 // indirect
github.com/xiam/to v0.0.0-20200126224905-d60d31e03561 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/tools v0.8.0 // indirect
)