[package] name = "gix-url" version = "0.27.3" repository = "https://github.com/Byron/gitoxide" license = "MIT OR Apache-2.0" description = "A crate of the gitoxide project implementing parsing and serialization of gix-url" authors = ["Sebastian Thiel "] edition = "2021" include = ["src/**/*", "LICENSE-*", "tests/baseline/**/*"] rust-version = "1.65" [lib] doctest = false [features] ## Data structures implement `serde::Serialize` and `serde::Deserialize`. serde = ["dep:serde", "bstr/serde"] [dependencies] gix-features = { version = "^0.38.1", path = "../gix-features" } gix-path = { version = "^0.10.7", path = "../gix-path" } serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"]} thiserror = "1.0.32" url = "2.5.0" bstr = { version = "1.3.0", default-features = false, features = ["std"] } home = "0.5.5" document-features = { version = "0.2.0", optional = true } [dev-dependencies] assert_matches = "1.5.0" gix-testtools = { path = "../tests/tools" } [package.metadata.docs.rs] all-features = true features = ["document-features"]