[package]
edition = "2024"
name = "ada-url"
version = "3.4.2"
authors = [
"Yagiz Nizipli <yagiz@nizipli.com>",
"Daniel Lemire <daniel@lemire.me>",
"LongYinan <github@lyn.one>",
"Boshen <boshenc@gmail.com>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast WHATWG Compliant URL parser"
homepage = "https://ada-url.com"
documentation = "https://docs.rs/ada-url"
readme = "README.md"
keywords = [
"url",
"parser",
"whatwg",
"performance",
]
categories = [
"parser-implementations",
"web-programming",
"encoding",
"parsing",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ada-url/rust"
[package.metadata.docs.rs]
features = ["serde"]
[package.metadata.playground]
features = ["serde"]
[features]
default = ["std"]
libcpp = []
serde = [
"dep:serde",
"std",
]
std = []
[lib]
name = "ada_url"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[bench]]
name = "parse"
path = "bench/parse.rs"
harness = false
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.url]
version = "2"
[build-dependencies.cc]
version = "1.1"
features = ["parallel"]
[build-dependencies.link_args]
version = "0.6"
[build-dependencies.regex]
version = "1.11"
features = []