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