Skip to content

Commit eaf2afe

Browse files
committed
bumb espflash dependencies
1 parent 73b8867 commit eaf2afe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

espflash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ path = "src/main.rs"
1616
[dependencies]
1717
binread = "2.1.0"
1818
bytemuck = { version = "1.4.0", features = ["derive"] }
19-
indicatif = "0.15"
19+
indicatif = "0.16"
2020
md5 = "0.7.0"
2121
pico-args = "0.4.0"
2222
serial = "0.4"
2323
sha2 = "0.9.1"
2424
slip-codec = "0.2.4"
2525
thiserror = "1.0.20"
26-
xmas-elf = "0.7.0"
26+
xmas-elf = "0.8.0"
2727
serde = { version = "1.0", features = ["derive"] }
2828
toml = "0.5"
2929
directories-next = "2.0.0"

espflash/src/flasher.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,12 +525,12 @@ impl Flasher {
525525
);
526526

527527
for (i, block) in chunks.enumerate() {
528-
pb_chunk.set_message(&format!("segment 0x{:X} writing chunks", addr));
528+
pb_chunk.set_message(format!("segment 0x{:X} writing chunks", addr));
529529
let block_padding = FLASH_WRITE_SIZE - block.len();
530530
self.block_command(Command::FlashData, block, block_padding, 0xff, i as u32)?;
531531
pb_chunk.inc(1);
532532
}
533-
pb_chunk.finish_with_message(&format!("segment 0x{:X}", addr));
533+
pb_chunk.finish_with_message(format!("segment 0x{:X}", addr));
534534
}
535535

536536
self.flash_finish(false)?;

0 commit comments

Comments
 (0)