[package]
edition = "2024"
name = "furl"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text (printf) and JSON formatter for URLs"
homepage = "https://github.com/ogheorghies/furl"
readme = "README.md"
keywords = [
"URL",
"URI",
"formatting",
"JSON",
"printf",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ogheorghies/furl"
[badges.maintenance]
status = "..."
[lib]
name = "furl"
path = "src/lib.rs"
[[bin]]
name = "furl"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.argh]
version = "0.1"
[dependencies.url]
version = "2.5.8"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true