[package] authors = ["T.J. Telan "] categories = ["parser-implementations", "encoding"] description = "A parser for git repo urls based on url crate" documentation = "https://docs.rs/git-url-parse" edition = "2021" keywords = ["git", "url", "parsing", "normalize"] license = "MIT" name = "git-url-parse" readme = "README.md" repository = "https://github.com/tjtelan/git-url-parse-rs" version = "0.4.5" [features] default = [] tracing = ["dep:tracing"] [dependencies] tracing = { version = "0.1", optional = true } url = { version = "^2.2", default-features = false } strum = { version = "^0.26", features = ["derive"] } thiserror = "^1.0" [dev-dependencies] env_logger = "^0.9" regex = "^1.10"