diff options
| author | Josh Stone <cuviper@gmail.com> | 2023-08-17 15:40:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-17 15:40:09 -0700 |
| commit | df877c03532aa0cb9d82bbf0321246498b7eff45 (patch) | |
| tree | 1acc4882c3c7d583c3c47ceff60f8963025a539f | |
| parent | 5861815559f93dbd43431756e0256329f18ea47a (diff) | |
| parent | df3819bd96365ae03d64c33f2785a23cc334ccd0 (diff) | |
| download | rust-df877c03532aa0cb9d82bbf0321246498b7eff45.tar.gz rust-df877c03532aa0cb9d82bbf0321246498b7eff45.zip | |
Rollup merge of #114944 - lqd:fix-thiserror, r=RalfJung
update `thiserror` to version >= 1.0.46 1.0.46 version is the one with [the workaround](https://github.com/dtolnay/thiserror/pull/248) for #114839. I'm also encountering this issue, so let's update the dependency so that everyone doesn't have to `./x clean`. Fixes #114839. r? `@RalfJung`
| -rw-r--r-- | Cargo.lock | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8d707067bb9..47d6b3c44a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5126,9 +5126,9 @@ checksum = "aac81b6fd6beb5884b0cf3321b8117e6e5d47ecb6fc89f414cfdcca8b2fe2dd8" [[package]] name = "thiserror" -version = "1.0.40" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" +checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" dependencies = [ "thiserror-impl", ] @@ -5155,9 +5155,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" +checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" dependencies = [ "proc-macro2", "quote", |
