You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let trimre = Regex::new("[ \n\r\t]*\n[ \n\r\t]*").unwrap();
288
291
289
292
let start = Instant::now();
290
293
loop{
@@ -452,7 +455,13 @@ fn main() {
452
455
}
453
456
let unescaped = e.unescaped().unwrap_or_else(|err| fatalerr!("Error: failed to unescape XML text node '{}': {}",String::from_utf8_lossy(e), err));
454
457
let decoded = reader.decode(&unescaped).unwrap_or_else(|err| fatalerr!("Error: failed to decode XML text node '{}': {}",String::from_utf8_lossy(e), err));
0 commit comments