Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commands: sample uds message exchange #250

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
219 changes: 214 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions commands/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "^0.4.19"
serde = { version = "^1.0", features = ["derive"] }
serde = { version = "~1.0", features = ["derive"] }
serde_json = "~1.0"
prost = "~0.13"
anyhow = "~1.0"
tokio = { version = "~1.41", features = ["full"] }
tracing = "0.1"

[dev-dependencies]
tracing-test = { version = "0.2", features = ["no-env-filter"] }

[build-dependencies]
prost-build = { version = "~0.13" }
prost-build = { version = "~0.13" }
3 changes: 2 additions & 1 deletion commands/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Compile

To compile this crate, you will need protobuf compiler. On debian-like you can run:

apt-get install protobuf-compiler
apt-get install protobuf-compiler
Loading
Loading