Skip to content

Commit

Permalink
fix: pin thiserror to <1.0.45 which requires updating the toolchain (#…
Browse files Browse the repository at this point in the history
…5962)

### Description

The latest thiserror uses certain apis that aren't available to us
without a toolchain update.
 
https://github.com/dtolnay/thiserror/pull/246/files

Pin the version instead

### Testing Instructions

Should be covered by existing test suite


Closes TURBO-1331

Co-authored-by: Alexander Lyon <Alexander Lyon>
  • Loading branch information
arlyon committed Sep 15, 2023
1 parent 4d4c0d8 commit 0a1840a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ sourcemap = "6.0.2"
syn = "1.0.107"
tempfile = "3.3.0"
test-case = "3.0.0"
thiserror = "1.0.38"
# pinned due to 1.0.45 requiring toolchain update
thiserror = "<1.0.45"
tiny-gradient = "0.1.0"
tokio = "1.25.0"
tokio-util = { version = "0.7.7", features = ["io"] }
Expand Down

0 comments on commit 0a1840a

Please sign in to comment.