From 527b32876823a8c4154fcbeb1146fa7da0e4ade2 Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Mon, 21 Jan 2019 10:54:39 -0500 Subject: Minor fixes: - Suppress deprecated warning from error-chain - Fix clippy issues - Update dependencies - Update example to csv 1.0 --- src/de/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/de/mod.rs') diff --git a/src/de/mod.rs b/src/de/mod.rs index 5d8115a..c44ae19 100644 --- a/src/de/mod.rs +++ b/src/de/mod.rs @@ -101,8 +101,8 @@ impl Config { /// Create a new `Config` with the specified `max_depth` and `strict` mode. pub fn new(max_depth: usize, strict: bool) -> Self { Self { - max_depth: max_depth, - strict: strict, + max_depth, + strict, } } -- cgit v1.2.3