Skip to content

Commit 46f460a

Browse files
committed
Merge branch '⬆️-deps' into 🦆
2 parents 2e78399 + fffec5f commit 46f460a

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

Cargo.lock

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

src/r3_port_arm_m_test_driver/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ r3_support_rp2040 = { path = "../r3_support_rp2040", optional = true, features =
4141
r3_port_arm_m = { path = "../r3_port_arm_m", optional = true }
4242
r3 = { path = "../r3", optional = true }
4343

44-
cortex-m-semihosting = { version = "0.3.5", optional = true }
45-
panic-semihosting = { version = "0.5.3", optional = true }
44+
cortex-m-semihosting = { version = "0.5.0", optional = true }
45+
panic-semihosting = { version = "0.6.0", optional = true }
4646
panic-rtt-target = { version = "0.1.2", optional = true, features = ["cortex-m"] }
4747
cortex-m-rt = { version = "0.6.12", optional = true, features = ["device"] }
4848
rp2040-pac = { version = "0.3.0", optional = true }

src/r3_port_arm_m_test_driver/src/logger_semihosting.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ impl log::Log for Logger {
1111
level = record.level(),
1212
target = record.target(),
1313
args = record.args()
14-
)
15-
.unwrap();
14+
);
1615
}
1716

1817
fn flush(&self) {}

src/r3_port_arm_m_test_driver/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ macro_rules! instantiate_test {
4343
rtt_target::rprintln!("!- TEST WAS SUCCESSFUL -!");
4444

4545
#[cfg(feature = "output-semihosting")]
46-
cortex_m_semihosting::hprintln!("!- TEST WAS SUCCESSFUL -!").unwrap();
46+
cortex_m_semihosting::hprintln!("!- TEST WAS SUCCESSFUL -!");
4747

4848
#[cfg(feature = "board-rp_pico")]
4949
r3_support_rp2040::sprintln!(

src/r3_test_runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ clap = { version = "3.0.0", features = ["derive"] }
2929
rusb = { version = "0.8" }
3030
toml = { version = "0.5.6" }
3131
log = { version = "0.4.8" }
32-
crc = { version = "2.0.0" }
32+
crc = { version = "3.0.0" }
3333

3434
[dependencies.goblin]
3535
version = "0.5.0"

0 commit comments

Comments
 (0)