-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Erik Jaegervall <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule kuksa-databroker
updated
27 files
+7 −2 | .github/workflows/create_draft_release.yml | |
+5 −1 | .github/workflows/kuksa_databroker-cli_build.yml | |
+35 −1 | .github/workflows/kuksa_databroker_build.yml | |
+447 −472 | Cargo.lock | |
+5 −2 | Cargo.toml | |
+4 −1 | README.md | |
+8 −8 | certificates/Client.pem | |
+8 −8 | certificates/Server.pem | |
+1 −1 | databroker-cli/Cargo.toml | |
+48 −5 | databroker-cli/src/kuksa_cli.rs | |
+6 −3 | databroker-cli/src/sdv_cli.rs | |
+1 −1 | databroker-proto/Cargo.toml | |
+1 −1 | databroker/Cargo.toml | |
+67 −1 | databroker/src/grpc/kuksa_val_v1/val.rs | |
+48 −0 | databroker/src/grpc/sdv_databroker_v1/conversions.rs | |
+10 −4 | databroker/src/main.rs | |
+1 −1 | databroker/tests/read_write_values.rs | |
+7 −0 | doc/protocol/README.md | |
+4 −0 | doc/user_guide.md | |
+206 −223 | lib/Cargo.lock | |
+1 −1 | lib/Cargo.toml | |
+1 −1 | lib/common/Cargo.toml | |
+1 −1 | lib/kuksa/Cargo.toml | |
+4 −4 | lib/kuksa/src/lib.rs | |
+1 −1 | lib/sdv/Cargo.toml | |
+13 −2 | proto/sdv/databroker/v1/types.proto | |
+4 −2 | scripts/prepare_release.sh |