32 releases (8 stable)

new 1.0.8 May 12, 2024
1.0.7 Aug 5, 2023
1.0.6 Apr 30, 2023
1.0.5 Feb 25, 2023
0.5.6 Jul 21, 2022

#201 in Parser implementations

Download history 167/week @ 2024-01-24 282/week @ 2024-01-31 196/week @ 2024-02-07 149/week @ 2024-02-14 220/week @ 2024-02-21 217/week @ 2024-02-28 216/week @ 2024-03-06 183/week @ 2024-03-13 119/week @ 2024-03-20 124/week @ 2024-03-27 139/week @ 2024-04-03 204/week @ 2024-04-10 408/week @ 2024-04-17 399/week @ 2024-04-24 297/week @ 2024-05-01 271/week @ 2024-05-08

1,433 downloads per month
Used in aim

MIT license

71KB
1.5K SLoC

url-parse

CI CD Security Audit codecov crates.io Documentation

A library for parsing URLs.

Why?

url-parse provides some schemes unavailable in other url parsing crates (i.e. sftp, ssh, s3) and enables the user to specify custom schemes before parsing.

Usage

Basic

Create a new parser object with Parser::new(). You can then use parser.parse(url) which will return a public Url parsed structure back.

Its fields are then directly accessible:

let input = "https://user:pass@www.example.co.uk:443/blog/article/search?docid=720&hl=en#dayone";
let result = Parser::new(None).parse(input).unwrap();
assert_eq!(
    result,
    Url {
        scheme: Some("https".to_string()),
        user_pass: (Some("user".to_string()), Some("pass".to_string())),
        subdomain: Some("www".to_string()),
        domain: Some("example.co".to_string()),
        top_level_domain: Some("uk".to_string()),
        port: Some(443),
        path: Some(vec![
            "blog".to_string(),
            "article".to_string(),
            "search".to_string(),
        ]),
        query: Some("docid=720&hl=en#dayone".to_string()),
        anchor: Some("dayone".to_string()),
    }
)

Custom schemes

Passing a Some(HashMap) to Parser::new() can be used to create custom schemes.

The hashmap is a key,value pair representing the scheme name (key) to a port and description mapping (value).

let input = "myschema://user:pass@example.co.uk/path/to/file.txt";
let mut myport_mappings = HashMap::new();
myport_mappings.insert("myschema", (8888, "My custom schema"));
let result = Parser::new(Some(myport_mappings)).parse(input).unwrap();
assert_eq!(
    result,
    Url {
        scheme: Some("myschema".to_string()),
        user_pass: (Some("user".to_string()), Some("pass".to_string())),
        subdomain: Some("www".to_string()),
        domain: Some("example.co".to_string()),
        top_level_domain: Some("uk".to_string()),
        port: Some(8888),
        path: Some(vec![
            "path".to_string(),
            "to".to_string(),
            "file.txt".to_string(),
        ]),
        query: None,
        anchor: None,
    }
);

Dependencies

~2.8–4MB
~67K SLoC