diff options
author | xengineering <me@xengineering.eu> | 2024-05-31 09:39:31 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-31 09:41:17 +0200 |
commit | 41072be6c6af48f3066daf60552eba5191bfad7d (patch) | |
tree | 03a0dfee7a0ebf05e560f0b7ec53e5a3521969d4 /software/go.mod | |
parent | 9a1f97a671d80df29c309b3aae8ad66755bef42f (diff) | |
download | iot-core-41072be6c6af48f3066daf60552eba5191bfad7d.tar iot-core-41072be6c6af48f3066daf60552eba5191bfad7d.tar.zst iot-core-41072be6c6af48f3066daf60552eba5191bfad7d.zip |
software: Add protobuf dependency
This was not present because the Go tool detects this dependency only in
the case of the generated discovery package. This package was not
present during the last `go mod tidy` and `go mod vendor` cycle.
Diffstat (limited to 'software/go.mod')
-rw-r--r-- | software/go.mod | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/software/go.mod b/software/go.mod index c742d5b..4f493fb 100644 --- a/software/go.mod +++ b/software/go.mod @@ -2,7 +2,10 @@ module xengineering.eu/iot-core go 1.22.3 -require go.bug.st/serial v1.6.2 +require ( + go.bug.st/serial v1.6.2 + google.golang.org/protobuf v1.34.1 +) require ( github.com/creack/goselect v0.1.2 // indirect |