diff --git a/bootloader-tool/Cargo.lock b/bootloader-tool/Cargo.lock index c7ea25e..9807e07 100644 --- a/bootloader-tool/Cargo.lock +++ b/bootloader-tool/Cargo.lock @@ -189,6 +189,26 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +[[package]] +name = "bincode" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" +dependencies = [ + "bincode_derive", + "serde", + "unty", +] + +[[package]] +name = "bincode_derive" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" +dependencies = [ + "virtue", +] + [[package]] name = "bitfield" version = "0.19.2" @@ -1553,6 +1573,7 @@ checksum = "cbe3ebd35648720efb8ae8ac516d2e4b01ae599e4852b7c4e58cad57faa98a9c" dependencies = [ "anyhow", "async-io", + "bincode", "bitfield", "bitvec", "docsplay", @@ -2393,6 +2414,12 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" +[[package]] +name = "unty" +version = "0.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" + [[package]] name = "url" version = "2.5.7" @@ -2423,6 +2450,12 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" +[[package]] +name = "virtue" +version = "0.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" + [[package]] name = "wasi" version = "0.11.1+wasi-snapshot-preview1" diff --git a/bootloader-tool/Cargo.toml b/bootloader-tool/Cargo.toml index 118024c..43ee748 100644 --- a/bootloader-tool/Cargo.toml +++ b/bootloader-tool/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" clap = { version = "4.5", features = ["derive"] } object = { version = "0.37.3", features = ["build"] } -probe-rs = { version = "0.29.1", default-features = false } +probe-rs = { version = "0.29.1", default-features = false, features = ["builtin-targets"] } tokio = { version = "1.47.1", features = ["macros", "rt", "rt-multi-thread"] }