3 releases

Uses old Rust 2015

0.1.2 Jun 5, 2018
0.1.1 Apr 11, 2017
0.1.0 Jul 26, 2016

#2135 in Parser implementations

Download history 21/week @ 2023-11-20 7/week @ 2023-11-27 6/week @ 2023-12-04 23/week @ 2023-12-11 4/week @ 2024-02-12 14/week @ 2024-02-19 40/week @ 2024-02-26 16/week @ 2024-03-04

74 downloads per month
Used in sel

MIT/Apache

135KB
3.5K SLoC

victoria-dom

Minimalistic HTML parser with CSS selectors

crates.io Build Status Coverage Status Released API docs Master API docs

The project has been inspired by Mojo::DOM.

Installing

Add the following lines to your Cargo.toml file:

[dependencies]
victoria-dom = "0.1"

and this to your crate root:

extern crate victoria_dom;

Examples

extern crate victoria_dom;

use victoria_dom::DOM;

fn main() {
    let html = r#"<html><div id="main">Hello, <a href="http://rust-lang.org" alt="The Rust Programing Language">Rust</a></div></html>"#;
    let dom = DOM::new(html);

    assert_eq!(dom.at("html").unwrap().text_all(), "Hello, Rust");
    assert_eq!(dom.at("div#main > a").unwrap().attr("alt").unwrap(), "The Rust Programing Language");
}

Documentation

https://docs.rs/victoria-dom

Dependencies

~2.1–3MB
~53K SLoC