From 933eb8ab38317d894b8b09b4de3cecd317221e06 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Thu, 27 Aug 2020 10:45:51 -0700 Subject: Switch from error-chain to thiserror (#33) thiserror provides a simpler interface than error-chain, directly generating an error enum similar to what could be written by hand. It also reduces dependencies; error-chain pulls in backtrace which currently pulls in gimli, which is fairly heavyweight. This changes the error type's interface, so it'll require a bump to 0.7.0. --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 3dae164..7bf11ba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -202,8 +202,6 @@ while_true )] -#[macro_use] -extern crate error_chain; #[macro_use] extern crate serde; -- cgit v1.2.3