requirements 0.3.0

Python PIP requirements.txt parser
Documentation
# requirements

![](https://github.com/batisteo/requirements/workflows/Rust/badge.svg)

Fast parser of [Python requirement files](https://pip.readthedocs.io/en/1.1/requirements.html)
both `.txt` or `.in`.

## Usage

Example:

```rust
use requirements;

fn main() {
    let content = "Django>=3.0.0";
    let reqs = requirements::parse_str(&content).unwrap();

    for req in reqs.into_iter() {
        println!("{:?}", req);
    }
}

```

## License

This project is Free Software and available under the MIT license. See
the `LICENSE` file for more details.