#reqwest #http-client #netrc #client #http

reqwest-netrc

netrc support for Rust with support for reqwest

2 releases

0.1.1 Jan 20, 2024
0.1.0 Jan 20, 2024

#58 in #reqwest

Download history 1/week @ 2024-02-18 48/week @ 2024-02-25 531/week @ 2024-03-03 245/week @ 2024-03-10 431/week @ 2024-03-17 56/week @ 2024-03-24 24/week @ 2024-03-31 15/week @ 2024-04-07 3/week @ 2024-04-14 26/week @ 2024-04-21 18/week @ 2024-04-28 10/week @ 2024-05-05 42/week @ 2024-05-12

96 downloads per month

MIT license

37KB
842 lines

netrc

A netrc library for Rust, with support for reqwest via reqwest-middleware.

reqwest-netrc

The reqwest-netrc crate is a middleware for reqwest to support the netrc file.

crates.io Documentation MIT licensed CI

Usage

To bring this crate into your repository, either add reqwest-netrc to your Cargo.toml, or run:

> cargo add reqwest-netrc

Example

The common scenario is to have a ~/.netrc file or the NETRC environement variable defined:

use reqwest::Client;
use reqwest_middleware::ClientBuilder;
use reqwest_netrc::NetrcMiddleware;

// ...

let client = ClientBuilder::new(Client::builder().build().unwrap())
    .with_init(NetrcMiddleware::new().unwrap())
    .build();

let res = client.get("https://domain.io/api/hello").send().await;

// ...

rust-netrc

The rust-netrc crate is a parser for the netrc files.

crates.io Documentation MIT licensed CI

Usage

To bring this crate into your repository, either add rust-netrc to your Cargo.toml, or run:

> cargo add rust-netrc

Example

use netrc::Netrc;

fn main() {
  let nrc = Netrc::new().unwrap();

  for (host, auth) in nrc.hosts {
      println!("{host}: {auth:?}");
  }
}

Contributing

Feedback and contributions are very welcome.

License

This project is licensed under MIT.

Dependencies

~4–16MB
~253K SLoC