parsed-css

Crates.ioparsed-css
lib.rsparsed-css
version0.1.0
created_at2025-10-10 15:07:54.413551+00
updated_at2025-10-10 15:07:54.413551+00
descriptionA Rust crate for parsing CSS file. It supports reading CSS file in an event-based fashion.
homepage
repositoryhttps://github.com/themahikaishar/parsed-css
max_upload_size
id1877069
size9,407
Mahi Kaishar (themahikaishar)

documentation

README

Parsed Css

Rust License

Parsed Css is a Rust crate for parsing CSS file. It supports reading CSS file in an event-based fashion. This allows you to receive events for different selectors, rules and comments during the parsing process.

Features

  • Event-Based Parsing: Receive events for different selectors, rules and comments during parsing.

Usage

Add this crate to your Cargo.toml file:

[dependencies]
parsed-css = "0.1.0"
use parsed_css::Lexer;
use std::fs;

fn main() {
    let content = fs::read_to_string("./examples/styles.css").expect("ERROR: couldn't read file.");

    for event in Lexer::new(&content).parse() {
        println!("{event:?}");
    }
}

Events

  • StartSelector(NAMES): Triggered when an CSS selector starts.

  • EndSelector(NAMES): Triggered when an CSS selector ends.

  • Rule(KEY, VALUE),: Triggered when an CSS rule is encountered.

  • Comment(VALUE): Triggered when a comment is encountered.

Contributing

Contributions are welcome! I would like you to contribute in this project.

Roadmap

This project is in its early stages, and there are many missing features that need implementation. Check the Issues section for a list of features, enhancements, and bug fixes that are planned.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Commit count: 0

cargo fmt