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
I'm not sure if I should be creating an issue here or in the rust-lang repo.
Here's what I was trying to run:
extern crate html5ever;
use std::fs::File;
use std::io::{self, BufRead, BufReader, Read, Write};
use std::path::Path;
use std::default::Default;
use html5ever::sink::rcdom::RcDom;
use html5ever::{parse, one_input};
fn main() {
let mut file = BufReader::new(File::open("aksdjasd").unwrap());
let mut source = String::new();
file.read_to_string(&mut source).unwrap();
let dom: RcDom = parse(one_input(source.clone()), Default::default());
}
I'm not sure if I should be creating an issue here or in the rust-lang repo.
Here's what I was trying to run:
The text was updated successfully, but these errors were encountered: