[package]
edition = "2021"
rust-version = "1.94"
name = "parse-git-url"
version = "0.5.2"
authors = [
"T.J. Telan <t.telan@gmail.com>",
"Eric Crosson <eric.s.crosson@utexas.edu>",
]
build = false
exclude = [
"/.envrc",
"/.github",
"/.gitignore",
"/.releaserc.json",
"/CHANGELOG.md",
"/flake.{lock,nix}",
"/package{,-lock}.json",
"/node_modules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser for git repo urls based on url crate"
homepage = "https://github.com/EricCrosson/parse-git-url"
documentation = "https://docs.rs/parse-git-url"
readme = "README.md"
keywords = [
"parse",
"git",
"url",
]
categories = [
"parser-implementations",
"encoding",
]
license = "MIT"
repository = "https://github.com/EricCrosson/parse-git-url"
[lib]
name = "parse_git_url"
path = "src/lib.rs"
[[example]]
name = "multi"
path = "examples/multi.rs"
[[example]]
name = "readme"
path = "examples/readme.rs"
[[example]]
name = "trim_auth"
path = "examples/trim_auth.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "normalize"
path = "tests/normalize.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "trim_auth"
path = "tests/trim_auth.rs"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "^2.2"
[dev-dependencies.env_logger]
version = "^0.11.0"