parse-git-url 0.6.0

A parser for git repo urls based on url crate
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.94"
name = "parse-git-url"
version = "0.6.0"
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"