gecko-dev/servo/components/selectors
2024-11-13 22:48:38 +00:00
..
relative_selector
attr.rs Bug 1918093: Convert selectors to edition 2021 (r=emilio) 2024-09-19 13:06:59 +00:00
bloom.rs
build.rs
builder.rs Bug 1918093: Convert selectors to edition 2021 (r=emilio) 2024-09-19 13:06:59 +00:00
Cargo.toml Bug 1926269 - Changes to allow publishing selectors. r=supply-chain-reviewers 2024-10-23 19:54:49 +00:00
CHANGES.md
context.rs Bug 1926164 - Negate in_negation when nesting r=dshin,jwatt 2024-10-25 15:57:03 +00:00
kleene_value.rs
lib.rs Bug 1918093: Convert selectors to edition 2021 (r=emilio) 2024-09-19 13:06:59 +00:00
matching.rs Bug 1918093: Convert selectors to edition 2021 (r=emilio) 2024-09-19 13:06:59 +00:00
nth_index_cache.rs
parser.rs Bug 1930789 Part 2 - Avoid collecting into a Vec and then converting to boxed slice in a couple places. r=firefox-style-system-reviewers,emilio 2024-11-13 22:48:38 +00:00
README.md
sink.rs
tree.rs Bug 1912241: Correctly refer to current matching context's shadow root while matching implicit scopes. r=firefox-style-system-reviewers,emilio 2024-08-21 18:17:21 +00:00
visitor.rs Bug 1918093: Convert selectors to edition 2021 (r=emilio) 2024-09-19 13:06:59 +00:00

rust-selectors

CSS Selectors library for Rust. Includes parsing and serilization of selectors, as well as matching against a generic tree of elements. Pseudo-elements and most pseudo-classes are generic as well.

Warning: breaking changes are made to this library fairly frequently (13 times in 2016, for example). However you can use this crate without updating it that often, old versions stay available on crates.io and Cargo will only automatically update to versions that are numbered as compatible.

To see how to use this library with your own tree representation, see Kuchikis src/select.rs. (Note however that Kuchiki is not always up to date with the latest rust-selectors version, so that code may need to be tweaked.) If you dont already have a tree data structure, consider using Kuchiki itself.