This crate parses PEP-508 strings for Rust. It uses pest under the hood to parse a simplified version of the Parsing Expression Grammar (PEG) of the PEP-508 standard.
toml
[dependencies]
pep508_parser = "0.1.0"
```rust use pep508_parser::parse;
fn main() { let dependency = parse("name[quux, strange];pythonversion<'2.7' and platformversion=='2'").unwrap(); } ```