diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xml/reader.rs | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/xml/reader.rs b/src/xml/reader.rs index d82400d..265ac11 100644 --- a/src/xml/reader.rs +++ b/src/xml/reader.rs @@ -3,6 +3,7 @@ use chrono::format::ParseError as ChronoParseError;  use rustc_serialize::base64::FromBase64;  use std::io::Read;  use std::str::FromStr; +use std::collections::HashMap;  use xml_rs::reader::{EventReader as XmlEventReader, ParserConfig, XmlEvent};  use {Error, Result, PlistEvent}; @@ -28,6 +29,7 @@ impl<R: Read> EventReader<R> {              cdata_to_characters: true,              ignore_comments: true,              coalesce_characters: true, +            extra_entities: HashMap::default(),          };          EventReader { | 
