4 releases (breaking)

0.4.0 Nov 20, 2023
0.3.0 Mar 11, 2023
0.2.0 Mar 4, 2023
0.1.0 Feb 18, 2023

#1174 in Parser implementations

Download history 15/week @ 2024-02-17 53/week @ 2024-02-24 24/week @ 2024-03-02 36/week @ 2024-03-09 17/week @ 2024-03-16 6/week @ 2024-03-23 33/week @ 2024-03-30 16/week @ 2024-04-06 5/week @ 2024-04-13

61 downloads per month
Used in 2 crates

MPL-2.0 license

20KB
410 lines

pep-508

Rust implementation of Python dependency parser for PEP 508

version deps license ci

Documentation

Usage

let dep = "requests[security, socks] <= 2.28.1, == 2.28.*; python_version > '3.7' and extra == 'http'";
let parsed = parse(dep).unwrap();
let expected = Dependency {
    name: "requests",
    extras: vec!["security", "socks"],
    spec: Some(Spec::Version(vec![
        VersionSpec {
            comparator: Comparator::Le,
            version: "2.28.1",
        },
        VersionSpec {
            comparator: Comparator::Eq,
            version: "2.28.*",
        },
    ])),
    marker: Some(Marker::And(
        Box::new(Marker::Operator(
            Variable::PythonVersion,
            Operator::Comparator(Comparator::Gt),
            Variable::String("3.7"),
        )),
        Box::new(Marker::Operator(
            Variable::Extra,
            Operator::Comparator(Comparator::Eq),
            Variable::String("http"),
        )),
    )),
};
assert_eq!(parsed, expected);

Changelog

See CHANGELOG.md

Dependencies

~2MB
~34K SLoC