Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 583 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 583 Bytes

netrc_util

crates.io

A simple libary for parsing netrc files.

Usage

use netrc_util::{Host, NetrcParser};

fn main() {
    let netrc_content = "machine sample.test login user password pass";
    let host = Host::parse("sample.test").unwrap();

    let entry = NetrcParser::new(netrc_content).entry_for_host(&host).unwrap().unwrap();

    assert_eq!(entry.login(), Some("login"));
    assert_eq!(entry.password(), Some("pass"));
}