From 529d4d77ff1abfb574a2f2f5d96c5652f363b199 Mon Sep 17 00:00:00 2001 From: Urhengulas Date: Mon, 23 Jan 2023 16:30:56 +0100 Subject: [PATCH 1/5] Prepare `probe-run v0.3.6` --- CHANGELOG.md | 7 +++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d710286e..526e9392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +## [v0.3.6] - 2023-01-23 + - [#373] Update probe-rs to v0.14 - [#371] Add "missing drivers" to troubleshooting section - [#366] Update CI @@ -444,8 +446,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p Initial release -[Unreleased]: https://github.com/knurling-rs/probe-run/compare/v0.3.5...main -[v0.3.4]: https://github.com/knurling-rs/probe-run/compare/v0.3.4...v0.3.5 +[Unreleased]: https://github.com/knurling-rs/probe-run/compare/v0.3.6...main +[v0.3.6]: https://github.com/knurling-rs/probe-run/compare/v0.3.5...v0.3.6 +[v0.3.5]: https://github.com/knurling-rs/probe-run/compare/v0.3.4...v0.3.5 [v0.3.4]: https://github.com/knurling-rs/probe-run/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/knurling-rs/probe-run/compare/v0.3.2...v0.3.3 [v0.3.2]: https://github.com/knurling-rs/probe-run/compare/v0.3.1...v0.3.2 diff --git a/Cargo.lock b/Cargo.lock index a41b8100..e15b3a75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -907,7 +907,7 @@ dependencies = [ [[package]] name = "probe-run" -version = "0.3.5" +version = "0.3.6" dependencies = [ "addr2line", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 9c0001c0..7e556ed2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "probe-run" readme = "README.md" repository = "https://github.com/knurling-rs/probe-run" -version = "0.3.5" +version = "0.3.6" [dependencies] addr2line = { version = "0.18", default-features = false, features = [ From 11b0aeb23d9567572f71fd24e79d2f3b834ca914 Mon Sep 17 00:00:00 2001 From: Urhengulas Date: Mon, 23 Jan 2023 16:31:09 +0100 Subject: [PATCH 2/5] Update dependencies --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 6 +++--- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e15b3a75..866ca4ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,14 +4,14 @@ version = 3 [[package]] name = "addr2line" -version = "0.18.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ca9b76e919fd83ccfb509f51b28c333c0e03f2221616e347a129215cec4e4a9" +checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" dependencies = [ "cpp_demangle", "fallible-iterator", - "gimli 0.26.2", - "object 0.29.0", + "gimli 0.27.0", + "object 0.30.2", "rustc-demangle", ] @@ -206,9 +206,9 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" [[package]] name = "cpp_demangle" -version = "0.3.5" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" +checksum = "b446fd40bcc17eddd6a4a78f24315eb90afdb3334999ddfd4909985c47722442" dependencies = [ "cfg-if", ] @@ -753,7 +753,6 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" dependencies = [ - "flate2", "memchr", ] @@ -763,6 +762,7 @@ version = "0.30.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83" dependencies = [ + "flate2", "memchr", ] @@ -915,12 +915,12 @@ dependencies = [ "colored", "defmt-decoder", "dirs", - "gimli 0.26.2", + "gimli 0.27.0", "git-version", "insta", "log", "nix", - "object 0.29.0", + "object 0.30.2", "os_pipe", "pretty_assertions", "probe-rs", diff --git a/Cargo.toml b/Cargo.toml index 7e556ed2..835f20ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/knurling-rs/probe-run" version = "0.3.6" [dependencies] -addr2line = { version = "0.18", default-features = false, features = [ +addr2line = { version = "0.19", default-features = false, features = [ "fallible-iterator", "std-object", "rustc-demangle", @@ -21,10 +21,10 @@ anyhow = "1" clap = { version = "4.0", features = ["derive", "env"] } colored = "2" defmt-decoder = { version = "=0.3.3", features = ["unstable"] } -gimli = { version = "0.26", default-features = false } +gimli = { version = "0.27", default-features = false } git-version = "0.3" log = "0.4" -object = { version = "0.29", default-features = false } +object = { version = "0.30", default-features = false } probe-rs = "0.14.1" probe-rs-rtt = "0.14.1" signal-hook = "0.3" From 4ec6538830bb451c8d675cc06bcd85d22adb9c9b Mon Sep 17 00:00:00 2001 From: Urhengulas Date: Tue, 24 Jan 2023 17:34:04 +0100 Subject: [PATCH 3/5] Update dependencies --- Cargo.lock | 315 ++++++++++------------------------------------------- Cargo.toml | 8 +- 2 files changed, 63 insertions(+), 260 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 866ca4ae..42312e1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,8 +10,8 @@ checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" dependencies = [ "cpp_demangle", "fallible-iterator", - "gimli 0.27.0", - "object 0.30.2", + "gimli", + "object", "rustc-demangle", ] @@ -21,15 +21,6 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - [[package]] name = "anyhow" version = "1.0.68" @@ -92,12 +83,6 @@ dependencies = [ "wyz", ] -[[package]] -name = "bumpalo" -version = "3.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" - [[package]] name = "byteorder" version = "1.4.3" @@ -116,18 +101,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "chrono" -version = "0.4.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" -dependencies = [ - "iana-time-zone", - "num-integer", - "num-traits", - "winapi", -] - [[package]] name = "clap" version = "4.1.1" @@ -165,16 +138,6 @@ dependencies = [ "os_str_bytes", ] -[[package]] -name = "codespan-reporting" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" -dependencies = [ - "termcolor", - "unicode-width", -] - [[package]] name = "colored" version = "2.0.0" @@ -198,12 +161,6 @@ dependencies = [ "windows-sys", ] -[[package]] -name = "core-foundation-sys" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" - [[package]] name = "cpp_demangle" version = "0.4.0" @@ -232,50 +189,6 @@ dependencies = [ "syn", ] -[[package]] -name = "cxx" -version = "1.0.86" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579" -dependencies = [ - "cc", - "cxxbridge-flags", - "cxxbridge-macro", - "link-cplusplus", -] - -[[package]] -name = "cxx-build" -version = "1.0.86" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70" -dependencies = [ - "cc", - "codespan-reporting", - "once_cell", - "proc-macro2", - "quote", - "scratch", - "syn", -] - -[[package]] -name = "cxxbridge-flags" -version = "1.0.86" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c" - -[[package]] -name = "cxxbridge-macro" -version = "1.0.86" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "dashmap" version = "5.4.0" @@ -291,23 +204,23 @@ dependencies = [ [[package]] name = "defmt-decoder" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d1405280032c1be7fcad411f7ba7b24de9dcea89fd77ae043dae1b2b9dd1254" +checksum = "cd42b0840c8f17cb4c5e48f82a32dff037b7dc6cbabbf933cb1188c2068790a0" dependencies = [ "anyhow", "byteorder", - "chrono", "colored", "defmt-json-schema", "defmt-parser", - "difference", - "gimli 0.26.2", + "dissimilar", + "gimli", "log", - "object 0.29.0", + "object", "ryu", "serde", "serde_json", + "time", ] [[package]] @@ -332,12 +245,6 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" -[[package]] -name = "difference" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" - [[package]] name = "dirs" version = "4.0.0" @@ -358,6 +265,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "dissimilar" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "210ec60ae7d710bed8683e333e9d2855a8a56a3e9892b38bad3bb0d4d29b0d5e" + [[package]] name = "encode_unicode" version = "0.3.6" @@ -429,16 +342,6 @@ dependencies = [ "wasi", ] -[[package]] -name = "gimli" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" -dependencies = [ - "fallible-iterator", - "stable_deref_trait", -] - [[package]] name = "gimli" version = "0.27.0" @@ -513,30 +416,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "iana-time-zone" -version = "0.1.53" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "winapi", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" -dependencies = [ - "cxx", - "cxx-build", -] - [[package]] name = "ihex" version = "3.0.0" @@ -616,15 +495,6 @@ dependencies = [ "serde", ] -[[package]] -name = "js-sys" -version = "0.3.60" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" -dependencies = [ - "wasm-bindgen", -] - [[package]] name = "lazy_static" version = "1.4.0" @@ -649,15 +519,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "link-cplusplus" -version = "1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" -dependencies = [ - "cc", -] - [[package]] name = "linked-hash-map" version = "0.5.6" @@ -698,9 +559,9 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "memoffset" -version = "0.6.5" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" dependencies = [ "autocfg", ] @@ -716,26 +577,16 @@ dependencies = [ [[package]] name = "nix" -version = "0.25.1" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" +checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" dependencies = [ - "autocfg", "bitflags", "cfg-if", "libc", "memoffset", "pin-utils", -] - -[[package]] -name = "num-integer" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" -dependencies = [ - "autocfg", - "num-traits", + "static_assertions", ] [[package]] @@ -747,15 +598,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "object" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" -dependencies = [ - "memchr", -] - [[package]] name = "object" version = "0.30.2" @@ -862,13 +704,13 @@ dependencies = [ "bitfield", "bitvec", "enum-primitive-derive", - "gimli 0.27.0", + "gimli", "hidapi", "ihex", "jaylink", "jep106", "num-traits", - "object 0.30.2", + "object", "once_cell", "probe-rs-target", "rusb", @@ -915,12 +757,12 @@ dependencies = [ "colored", "defmt-decoder", "dirs", - "gimli 0.27.0", + "gimli", "git-version", "insta", "log", "nix", - "object 0.30.2", + "object", "os_pipe", "pretty_assertions", "probe-rs", @@ -1006,9 +848,9 @@ dependencies = [ [[package]] name = "rstest" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9c9dc66cc29792b663ffb5269be669f1613664e69ad56441fdb895c2347b930" +checksum = "b07f2d176c472198ec1e6551dc7da28f1c089652f66a7b722676c2238ebc0edf" dependencies = [ "rstest_macros", "rustc_version", @@ -1016,15 +858,16 @@ dependencies = [ [[package]] name = "rstest_macros" -version = "0.14.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5015e68a0685a95ade3eee617ff7101ab6a3fc689203101ca16ebc16f2b89c66" +checksum = "7229b505ae0706e64f37ffc54a9c163e11022a6636d58fe1f3f52018257ff9f7" dependencies = [ "cfg-if", "proc-macro2", "quote", "rustc_version", "syn", + "unicode-ident", ] [[package]] @@ -1078,12 +921,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" -[[package]] -name = "scratch" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" - [[package]] name = "scroll" version = "0.10.2" @@ -1160,9 +997,9 @@ dependencies = [ [[package]] name = "serial_test" -version = "0.9.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92761393ee4dc3ff8f4af487bd58f4307c9329bbedea02cac0089ad9c411e153" +checksum = "538c30747ae860d6fb88330addbbd3e0ddbe46d662d032855596d8a8ca260611" dependencies = [ "dashmap", "lazy_static", @@ -1172,11 +1009,10 @@ dependencies = [ [[package]] name = "serial_test_derive" -version = "0.9.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b6f5d1c3087fb119617cff2966fe3808a80e5eb59a8c1601d5994d66f4346a5" +checksum = "079a83df15f85d89a68d64ae1238f142f172b1fa915d0d76b26a7cba1b659a69" dependencies = [ - "proc-macro-error", "proc-macro2", "quote", "syn", @@ -1283,6 +1119,33 @@ dependencies = [ "syn", ] +[[package]] +name = "time" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" +dependencies = [ + "itoa", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + +[[package]] +name = "time-macros" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" +dependencies = [ + "time-core", +] + [[package]] name = "tracing" version = "0.1.37" @@ -1322,12 +1185,6 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" -[[package]] -name = "unicode-width" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" - [[package]] name = "unsafe-libyaml" version = "0.2.5" @@ -1352,60 +1209,6 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" -[[package]] -name = "wasm-bindgen" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.83" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" - [[package]] name = "winapi" version = "0.3.9" diff --git a/Cargo.toml b/Cargo.toml index 835f20ca..f1a7519b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ addr2line = { version = "0.19", default-features = false, features = [ anyhow = "1" clap = { version = "4.0", features = ["derive", "env"] } colored = "2" -defmt-decoder = { version = "=0.3.3", features = ["unstable"] } +defmt-decoder = { version = "=0.3.4", features = ["unstable"] } gimli = { version = "0.27", default-features = false } git-version = "0.3" log = "0.4" @@ -35,6 +35,6 @@ dirs = "4" insta = "~1.11" os_pipe = "1.0" pretty_assertions = "1" -rstest = { version = "0.15", default-features = false } -nix = "0.25" -serial_test = { version = "0.9", default-features = false } +rstest = { version = "0.16", default-features = false } +nix = "0.26" +serial_test = { version = "1", default-features = false } From 00fc643c8ccca546deb082a606cf9992b39d15fe Mon Sep 17 00:00:00 2001 From: Urhengulas Date: Tue, 24 Jan 2023 17:34:32 +0100 Subject: [PATCH 4/5] `cargo update` --- Cargo.lock | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42312e1b..50100bca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,9 +103,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.1.1" +version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2" +checksum = "d8d93d855ce6a0aa87b8473ef9169482f40abaa2e9e0993024c35c902cbd5920" dependencies = [ "bitflags", "clap_derive", @@ -344,9 +344,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.27.0" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793" +checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec" dependencies = [ "fallible-iterator", "stable_deref_trait", @@ -406,9 +406,9 @@ dependencies = [ [[package]] name = "hidapi" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41cd9e1a4d30b483574da670f07701c87469a4919062b4236f0147a7df805cab" +checksum = "be8f12c6c547a4c0fdda0b833cbae77a1e6ed24163d5aab792ce860125badc53" dependencies = [ "cc", "libc", @@ -600,9 +600,9 @@ dependencies = [ [[package]] name = "object" -version = "0.30.2" +version = "0.30.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83" +checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" dependencies = [ "flate2", "memchr", @@ -694,9 +694,9 @@ dependencies = [ [[package]] name = "probe-rs" -version = "0.14.1" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e41696b745231616a6c6d92ce2ab52b771371b1d9c8416c6c29305bd1d5f8f35" +checksum = "717926460dbc3ff7bc366fd0502433a064eea2a2aa189dbb4abd5396de3716a8" dependencies = [ "anyhow", "base64", @@ -716,7 +716,7 @@ dependencies = [ "rusb", "scroll 0.11.0", "serde", - "serde_yaml 0.9.16", + "serde_yaml 0.9.17", "static_assertions", "svg", "thiserror", @@ -725,9 +725,9 @@ dependencies = [ [[package]] name = "probe-rs-rtt" -version = "0.14.1" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d68a1443ec521daf74ede535be045010c45477900a2e9ca1498eae832fff85a2" +checksum = "6768fd3c3fdc2661e2542d443bfa2ed7f48d27159e36409e65b9db955c1c60fd" dependencies = [ "probe-rs", "scroll 0.10.2", @@ -738,9 +738,9 @@ dependencies = [ [[package]] name = "probe-rs-target" -version = "0.14.1" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "447e12c668f766a9e1bed1d44c54bf3b37991e8ac472749db946077c77616f22" +checksum = "f01903e24b4187015ab2c3214e009b67de6658b4fc86c8ab9876808060f7a953" dependencies = [ "base64", "jep106", @@ -897,9 +897,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.36.6" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549" +checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03" dependencies = [ "bitflags", "errno", @@ -984,9 +984,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.16" +version = "0.9.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92b5b431e8907b50339b51223b97d102db8d987ced36f6e4d03621db9316c834" +checksum = "8fb06d4b6cdaef0e0c51fa881acb721bed3c924cfaa71d9c94a3b771dfdf6567" dependencies = [ "indexmap", "itoa", From 13f36b707a53a73d21a83055baa9203f48eb291d Mon Sep 17 00:00:00 2001 From: Urhengulas Date: Tue, 24 Jan 2023 17:37:36 +0100 Subject: [PATCH 5/5] Update `CHANGELOG.md` --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 526e9392..7de637cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [v0.3.6] - 2023-01-23 +- [#375] Release `probe-run v0.3.6` - [#373] Update probe-rs to v0.14 - [#371] Add "missing drivers" to troubleshooting section - [#366] Update CI +[#375]: https://github.com/knurling-rs/probe-run/pull/375 [#373]: https://github.com/knurling-rs/probe-run/pull/373 [#371]: https://github.com/knurling-rs/probe-run/pull/371 [#366]: https://github.com/knurling-rs/probe-run/pull/366