mirror of
https://github.com/tess1o/go-ecoflow-exporter.git
synced 2025-11-02 21:13:15 +00:00
* Added MQTT support that doesn't require Developer's access and secret keys * Upgraded go-ecoflow library
37 lines
1.3 KiB
Modula-2
37 lines
1.3 KiB
Modula-2
module go-ecoflow-exporter
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/eclipse/paho.mqtt.golang v1.4.3
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/golang-migrate/migrate/v4 v4.17.1
|
|
github.com/jackc/pgx/v5 v5.6.0
|
|
github.com/prometheus/client_golang v1.19.1
|
|
github.com/tess1o/go-ecoflow v1.1.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/lib/pq v1.10.9 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.54.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
golang.org/x/crypto v0.22.0 // indirect
|
|
golang.org/x/net v0.24.0 // indirect
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|