3 releases

0.1.2 Oct 20, 2024
0.1.1 Jan 20, 2024
0.1.0 Jan 20, 2024

#492 in Network programming

Download history 3169/week @ 2024-09-16 3332/week @ 2024-09-23 3108/week @ 2024-09-30 2580/week @ 2024-10-07 1487/week @ 2024-10-14 2845/week @ 2024-10-21 3052/week @ 2024-10-28 2842/week @ 2024-11-04 2042/week @ 2024-11-11 2498/week @ 2024-11-18 2784/week @ 2024-11-25 2824/week @ 2024-12-02 3442/week @ 2024-12-09 3243/week @ 2024-12-16 2411/week @ 2024-12-23 1764/week @ 2024-12-30

10,976 downloads per month
Used in 8 crates (3 directly)

MIT license

30KB
759 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

~1–12MB
~74K SLoC