2021-10-10 19:03:57 +00:00
|
|
|
module github.com/cyrilix/robocar-steering-tflite-edgetpu
|
|
|
|
|
2022-09-29 17:40:06 +00:00
|
|
|
go 1.19
|
2021-10-10 19:03:57 +00:00
|
|
|
|
|
|
|
require (
|
2022-06-07 22:07:52 +00:00
|
|
|
github.com/cyrilix/robocar-base v0.1.7
|
|
|
|
github.com/cyrilix/robocar-protobuf/go v1.0.5
|
2021-11-25 16:12:16 +00:00
|
|
|
github.com/disintegration/imaging v1.6.2
|
2022-06-07 22:07:52 +00:00
|
|
|
github.com/eclipse/paho.mqtt.golang v1.4.1
|
2022-09-08 08:39:46 +00:00
|
|
|
github.com/mattn/go-tflite v1.0.4
|
2022-06-07 22:07:52 +00:00
|
|
|
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v0.30.0
|
|
|
|
go.opentelemetry.io/otel/metric v0.30.0
|
|
|
|
go.opentelemetry.io/otel/sdk/metric v0.30.0
|
|
|
|
go.uber.org/zap v1.21.0
|
|
|
|
google.golang.org/protobuf v1.28.0
|
2021-10-10 19:03:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-06-07 22:07:52 +00:00
|
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2022-01-03 15:46:10 +00:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2021-10-10 19:03:57 +00:00
|
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
|
|
github.com/mattn/go-pointer v0.0.1 // indirect
|
2022-06-07 22:07:52 +00:00
|
|
|
go.opentelemetry.io/otel v1.7.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk v1.7.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/trace v1.7.0 // indirect
|
2021-10-10 19:03:57 +00:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
|
|
go.uber.org/multierr v1.6.0 // indirect
|
2021-11-25 16:12:16 +00:00
|
|
|
golang.org/x/image v0.0.0-20200430140353-33d19683fad8 // indirect
|
2021-10-10 19:03:57 +00:00
|
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
2022-06-07 22:07:52 +00:00
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
2021-12-02 08:16:50 +00:00
|
|
|
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
|
2021-10-10 19:03:57 +00:00
|
|
|
)
|