[package]
edition = "2024"
rust-version = "1.85"
name = "http-url"
version = "0.2.0"
authors = ["shenghaiyang"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A focused HTTP/HTTPS URL builder powered by the `url` crate."
homepage = "https://github.com/shenghaiyang/http-url"
readme = "README.md"
keywords = [
"url",
"http",
"https",
"builder",
"no-std",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/shenghaiyang/http-url"
[features]
default = ["std"]
std = [
"thiserror/std",
"url/std",
]
[lib]
name = "http_url"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.url]
version = "2"
default-features = false