Skip to content

Commit 41ef000

Browse files
authored
Fix builtin-targets for probe-rs (#32)
During minimizing the dependency-set for `cargo vet` accidentally the builtin-targets support for probe-rs was lost. This means that the `bootloader-tool` could not connect to the target because the target description was not builtin. This PR corrects this issue.
1 parent 524afdd commit 41ef000

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

bootloader-tool/Cargo.lock

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bootloader-tool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
clap = { version = "4.5", features = ["derive"] }
99

1010
object = { version = "0.37.3", features = ["build"] }
11-
probe-rs = { version = "0.29.1", default-features = false }
11+
probe-rs = { version = "0.29.1", default-features = false, features = ["builtin-targets"] }
1212

1313
tokio = { version = "1.47.1", features = ["macros", "rt", "rt-multi-thread"] }
1414

0 commit comments

Comments
 (0)