1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Library for quick and easy DOM search based on CSS queries for your scraping needs.
//!
//! Supported selectors are:
//! * tag based `span` or `a`
//! * class based `.button`
//! * id based `#mainbutton`
//! * direct child `>`
//! * attribute selectors `[href]`, `[href="specific-value"]`, `[href*="contains-str"]`,
//! `[href^="begins-with"]`,, `[href$="ends-with"]`
//! * all combinations of above like `div.container > form#feedback input.button`
#![crate_name = "crabquery"]

mod document;

pub use document::*;