2021-10-10 19:03:57 +00:00
|
|
|
module github.com/cyrilix/robocar-steering-tflite-edgetpu
|
|
|
|
|
2022-06-07 22:01:00 +00:00
|
|
|
go 1.18
|
2021-10-10 19:03:57 +00:00
|
|
|
|
|
|
|
require (
|
2022-01-03 15:46:10 +00:00
|
|
|
github.com/cyrilix/robocar-base v0.1.6
|
|
|
|
github.com/cyrilix/robocar-protobuf/go v1.0.4
|
2021-11-25 16:12:16 +00:00
|
|
|
github.com/disintegration/imaging v1.6.2
|
2021-10-10 19:03:57 +00:00
|
|
|
github.com/eclipse/paho.mqtt.golang v1.3.5
|
|
|
|
github.com/mattn/go-tflite v1.0.2-0.20210524070808-ba19dc99415b
|
2022-01-03 15:46:10 +00:00
|
|
|
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v0.26.0
|
|
|
|
go.opentelemetry.io/otel/metric v0.26.0
|
|
|
|
go.opentelemetry.io/otel/sdk/metric v0.26.0
|
2021-10-10 19:03:57 +00:00
|
|
|
go.uber.org/zap v1.19.1
|
2022-01-03 15:46:10 +00:00
|
|
|
google.golang.org/protobuf v1.27.1
|
2021-10-10 19:03:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-01-03 15:46:10 +00:00
|
|
|
github.com/go-logr/logr v1.2.1 // indirect
|
|
|
|
github.com/go-logr/stdr v1.2.0 // indirect
|
|
|
|
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-01-03 15:46:10 +00:00
|
|
|
go.opentelemetry.io/otel v1.3.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/internal/metric v0.26.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk v1.3.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk/export/metric v0.26.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/trace v1.3.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
|
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
|
|
|
)
|