diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/de.rs | 2 | ||||
-rw-r--r-- | src/spanned.rs | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -1850,7 +1850,7 @@ impl Error { impl std::convert::From<Error> for std::io::Error { fn from(e: Error) -> Self { - return std::io::Error::new(std::io::ErrorKind::InvalidData, e.to_string()) + return std::io::Error::new(std::io::ErrorKind::InvalidData, e.to_string()); } } diff --git a/src/spanned.rs b/src/spanned.rs index 7cccb32..cf69383 100644 --- a/src/spanned.rs +++ b/src/spanned.rs @@ -1,4 +1,3 @@ - use serde::{de, ser}; use std::fmt; |