11 releases

0.4.4 Nov 5, 2022
0.4.2 May 30, 2022
0.4.0 Nov 14, 2021
0.3.1 Jan 27, 2021
0.1.0 Feb 6, 2020

#347 in Parser implementations

Download history 491/week @ 2023-11-20 987/week @ 2023-11-27 1122/week @ 2023-12-04 1178/week @ 2023-12-11 575/week @ 2023-12-18 857/week @ 2023-12-25 1015/week @ 2024-01-01 1015/week @ 2024-01-08 1247/week @ 2024-01-15 1587/week @ 2024-01-22 1150/week @ 2024-01-29 1741/week @ 2024-02-05 1576/week @ 2024-02-12 1320/week @ 2024-02-19 927/week @ 2024-02-26 1378/week @ 2024-03-04

5,339 downloads per month
Used in 21 crates (19 directly)

MIT license

22KB
292 lines

git-url-parse

Minimum Supported Rust Version Crates.io Crates.io Github actions build status docs.rs licence Maintenance

Supports common protocols as specified by the Pro Git book

See: 4.1 Git on the Server - The Protocols

Supports parsing SSH/HTTPS repo urls for:

  • Github
  • Bitbucket
  • Azure Devops

See tests/parse.rs for expected output for a variety of inputs.


URLs that use the ssh:// protocol (implicitly or explicitly) undergo a small normalization process in order to be parsed.

Internally uses Url::parse() from the Url crate after normalization.

Examples

Run example with debug output

$ RUST_LOG=git_url_parse cargo run --example multi
$ RUST_LOG=git_url_parse cargo run --example trim_auth 

Simple usage and output

$ cargo run --example readme
use git_url_parse::GitUrl;

fn main() {
    println!("SSH: {:#?}", GitUrl::parse("git@github.com:tjtelan/git-url-parse-rs.git"));
    println!("HTTPS: {:#?}", GitUrl::parse("https://github.com/tjtelan/git-url-parse-rs"));
}

Example Output

SSH: Ok(
    GitUrl {
        host: Some(
            "github.com",
        ),
        name: "git-url-parse-rs",
        owner: Some(
            "tjtelan",
        ),
        organization: None,
        fullname: "tjtelan/git-url-parse-rs",
        scheme: Ssh,
        user: Some(
            "git",
        ),
        token: None,
        port: None,
        path: "tjtelan/git-url-parse-rs.git",
        git_suffix: true,
        scheme_prefix: false,
    },
)
HTTPS: Ok(
    GitUrl {
        host: Some(
            "github.com",
        ),
        name: "git-url-parse-rs",
        owner: Some(
            "tjtelan",
        ),
        organization: None,
        fullname: "tjtelan/git-url-parse-rs",
        scheme: Https,
        user: None,
        token: None,
        port: None,
        path: "/tjtelan/git-url-parse-rs",
        git_suffix: false,
        scheme_prefix: true,
    },
)

Dependencies

~8–11MB
~230K SLoC