utkarshkukreti / select.rs

A Rust library to extract useful data from HTML documents, suitable for web scraping.
MIT License
971 stars 69 forks source link

Document::from get `STATUS_STACK_OVERFLOW` #66

Open lynnux opened 3 years ago

lynnux commented 3 years ago

Hi, I'v encounter STATUS_STACK_OVERFLOW when load a big xml file, abount 341KB. On win7 64bit, vs2013.

fn main() {
    use select::document::Document;
    use select::predicate::{Name, Predicate};

    let document = Document::from(
        include_str!("8144940")
    );
    `println!("Hello,` world!");
}

8144940.zip

let4be commented 3 years ago

Any update? having the same issue, but yet to identify which html causes the crash(running this lib in crawler)