Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
概要
詳しくは #18 に書いてあります。
留意するべき点
Windows環境においては、usb-can-hardwareにWinUSBドライバを当てる必要があります。以下、その手順です。
以下GitHub Copilotによる自動生成
Summary
This pull request includes several changes to the Rust project configuration and dependencies. The most important changes are the removal of unnecessary dependency installation steps in the GitHub Actions workflow and the update of dependencies in the
Cargo.toml
andbuild.rs
files.Changes to GitHub Actions workflow:
.github/workflows/rust.yml
: Removed steps for installing protobuf-compiler dependencies, as they are no longer needed. [1] [2]Updates to dependencies:
Cargo.toml
: Updatedtonic-build
to version "0.12" and addedprotox
version "0.7" as a new dependency.build.rs
: Replacedtonic_build::compile_protos
withprotox::compile
and updated the configuration to usetonic_build::configure
.