mirror of
https://github.com/dpup/meshstream.git
synced 2026-03-28 17:42:37 +01:00
- Add .logista.yaml configuration for prettier log output - Add github.com/dpup/logista as a go tool - Update Makefile run target to pipe output through logista - Configure the format to show timestamp, level, and message with colors - Add special formatting for different message types - Display telemetry and position data in readable format - Add table display for remaining structured fields
43 lines
1.6 KiB
Modula-2
43 lines
1.6 KiB
Modula-2
module meshstream
|
|
|
|
go 1.24.1
|
|
|
|
// Add logista as a go tool
|
|
toolchain go1.24.1
|
|
|
|
tool github.com/dpup/logista v1.0.7
|
|
|
|
require (
|
|
github.com/eclipse/paho.mqtt.golang v1.5.0
|
|
google.golang.org/protobuf v1.36.6
|
|
)
|
|
|
|
require (
|
|
github.com/NYTimes/gziphandler v1.1.1 // indirect
|
|
github.com/dpup/prefab v0.2.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.2.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
|
|
github.com/knadh/koanf/maps v0.1.1 // indirect
|
|
github.com/knadh/koanf/parsers/yaml v0.1.0 // indirect
|
|
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
|
|
github.com/knadh/koanf/providers/env v1.0.0 // indirect
|
|
github.com/knadh/koanf/providers/file v1.1.2 // indirect
|
|
github.com/knadh/koanf/v2 v2.1.2 // indirect
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
go.uber.org/zap v1.27.0 // indirect
|
|
golang.org/x/net v0.34.0 // indirect
|
|
golang.org/x/sync v0.11.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
golang.org/x/text v0.22.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250204164813-702378808489 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 // indirect
|
|
google.golang.org/grpc v1.70.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|