From 4aa0d3d57e66497b75e9c01ca3bc5e5d66d1cd58 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Tue, 3 Dec 2019 21:34:59 -0500 Subject: [PATCH] fix broken travis build lock in a lower version of `thiserror` until https://github.com/dtolnay/thiserror/issues/53 is fixed --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6631a4a6..e877a2c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ env_logger = "0.7" # I would rather not use both failure and thiserror, but cranelift uses both failure = "0.1" hexf = "0.1" -thiserror = "1" +thiserror = "<=1.0.6" log = "0.4" target-lexicon = "0.9" tempfile = "3"