diff options
author | Sam Scott <sam.scott89@gmail.com> | 2019-01-21 10:54:39 -0500 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2019-01-21 10:54:39 -0500 |
commit | 527b32876823a8c4154fcbeb1146fa7da0e4ade2 (patch) | |
tree | e50d3e8e7e0fd98d5e17bc19183b24d9b71db12b /src/error.rs | |
parent | 5696a51e46649997ca346089e916b489a348386d (diff) |
Minor fixes:
- Suppress deprecated warning from error-chain
- Fix clippy issues
- Update dependencies
- Update example to csv 1.0
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs index aecc2d0..596f0a7 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,3 +1,5 @@ +#![allow(deprecated)] + use data_encoding; use serde::de; |