[package] name = "urlable" version = "0.2.0" edition = "2021" description = "A comprehensive URL manipulation library for Rust, providing utilities for parsing, encoding, and manipulating URLs with support for query strings, path manipulation, punycode domains and more" license = "MIT" authors = ["ihavecoke"] repository = "https://github.com/ihavecoke/urlable" documentation = "https://docs.rs/urlable" readme = "README.md" keywords = ["url", "parser", "query-string", "ufo", "encoding"] [lib] name = "urlable" path = "src/lib.rs" [dependencies] regex = "1.10.3" lazy_static = "1.4.0" url = "2.5.0" urlencoding = "2.1.3" percent-encoding = "2.3.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" clap = { version = "4.5.1", features = ["derive"] } colored = "2.1.0" idna = "1.0.2" indexmap = "2.2.3" [dev-dependencies] assert_matches = "1.5.0"