Skip to content

pevers/pep508_parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pep508_parser test suite

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.

[dependencies]
pep508_parser = "0.1.0"
use pep508_parser::parse;

fn main() {
    let dependency =
        parse("name[quux, strange];python_version<'2.7' and platform_version=='2'").unwrap();
}