1[package]
2name = "form_urlencoded"
3version = "1.2.1"
4authors = ["The rust-url developers"]
5description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
6categories = ["no_std"]
7repository = "https://github.com/servo/rust-url"
8license = "MIT OR Apache-2.0"
9edition = "2018"
10rust-version = "1.51"
11
12[lib]
13test = false
14
15[features]
16default = ["std"]
17std = ["alloc", "percent-encoding/std"]
18alloc = ["percent-encoding/alloc"]
19
20[dependencies]
21percent-encoding = { version = "2.3.0", default-features = false, path = "../percent_encoding" }
22
23[package.metadata.docs.rs]
24rustdoc-args = ["--generate-link-to-definition"]
25