my_rust_css_parser 0.1.3

A simple CSS parser using the Pest library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "my_rust_css_parser"
version = "0.1.3"
edition = "2021"
description = "A simple CSS parser using the Pest library for Rust."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Nikita-ukma/css_parser"

[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive"] }
clap_derive = "4.5.18"
pest = "2.7.14"
pest_derive = "2.7.14"
thiserror = "2.0.3"