diff options
author | Julien Cretin <cretin@google.com> | 2017-11-05 16:04:27 +0100 |
---|---|---|
committer | Julien Cretin <cretin@google.com> | 2017-11-05 16:04:27 +0100 |
commit | 2876bd3dd12a71938107472fb6a42ce3c321aa3a (patch) | |
tree | 82a2b2e45330877ff3fee31a577d2a74f81575d3 /src/error.rs | |
parent | 69d4634b3ac7a9547112b87a3bb564eda8e63c25 (diff) |
Update data-encoding major version
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs index c46fc8d..44459c5 100644 --- a/src/error.rs +++ b/src/error.rs @@ -18,7 +18,7 @@ error_chain! { } foreign_links { - Decoding(data_encoding::decode::Error); + Decoding(data_encoding::DecodeError); FromUtf8(string::FromUtf8Error); Io(io::Error); ParseInt(num::ParseIntError); @@ -46,4 +46,4 @@ impl de::Error for Error { where T: Display { ErrorKind::Custom(msg.to_string()).into() } -}
\ No newline at end of file +} |