3 unstable releases

0.2.1 Jul 20, 2021
0.2.0 Aug 17, 2019
0.1.0 Jan 14, 2017

#890 in Parser implementations

Download history 35136/week @ 2024-08-06 35304/week @ 2024-08-13 39626/week @ 2024-08-20 42687/week @ 2024-08-27 46567/week @ 2024-09-03 41013/week @ 2024-09-10 41750/week @ 2024-09-17 46160/week @ 2024-09-24 47693/week @ 2024-10-01 44112/week @ 2024-10-08 49033/week @ 2024-10-15 52538/week @ 2024-10-22 54151/week @ 2024-10-29 56259/week @ 2024-11-05 42666/week @ 2024-11-12 49909/week @ 2024-11-19

212,704 downloads per month
Used in 372 crates (6 directly)

MIT/Apache

45KB
1K SLoC

simplecss

Build Status Crates.io Documentation Rust 1.37+

A simple CSS 2.1 parser and selector.

This is not a browser-grade CSS parser. If you need one, use cssparser + selectors.

Since it's very simple we will start with limitations:

Limitations

  • At-rules are not supported. They will be skipped during parsing.
  • Property values are not parsed. In CSS like * { width: 5px } you will get a width property with a 5px value as a string.
  • CDO/CDC comments are not supported.
  • Parser is case sensitive. All keywords must be lowercase.
  • Unicode escape, like \26, is not supported.

Features

  • Selector matching support.
  • The rules are sorted by specificity.
  • !import parsing support.
  • Has a high-level parsers and low-level, zero-allocation tokenizers.
  • No unsafe.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~86KB