Bug 1608150 [wpt PR 21112] - Add missing space in `./wpt lint` command line docs...
[gecko.git] / third_party / rust / serde_urlencoded / README.md
blobe55a86c21727628f81dad10fe3e37a7f02426139
1 `x-www-form-urlencoded` meets Serde
2 ===================================
4 This crate is a Rust library for serialising to and deserialising from
5 the [`application/x-www-form-urlencoded`][urlencoded] format. It is built
6 upon [Serde], a high performance generic serialization framework and [rust-url],
7 a URL parser for Rust.
9 [rust-url]: https://github.com/servo/rust-url
10 [Serde]: https://github.com/serde-rs/serde
11 [urlencoded]: https://url.spec.whatwg.org/#application/x-www-form-urlencoded
13 Installation
14 ============
16 This crate works with Cargo and can be found on
17 [crates.io] with a `Cargo.toml` like:
19 ```toml
20 [dependencies]
21 serde_urlencoded = "0.5.1"
22 ```
24 [crates.io]: https://crates.io/crates/serde_urlencoded
26 ## Getting help
28 Serde developers live in the #serde channel on
29 [`irc.mozilla.org`](https://wiki.mozilla.org/IRC) and most rust-url developers
30 live in the #servo one. The #rust channel is also a good resource with generally
31 faster response time but less specific knowledge about Serde, rust-url or this
32 crate. If IRC is not your thing, we are happy to respond to [GitHub
33 issues](https://github.com/nox/serde_urlencoded/issues/new) as well.
35 ## License
37 serde_urlencoded is licensed under either of
39  * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
40    http://www.apache.org/licenses/LICENSE-2.0)
41  * MIT license ([LICENSE-MIT](LICENSE-MIT) or
42    http://opensource.org/licenses/MIT)
44 at your option.
46 ### Contribution
48 Unless you explicitly state otherwise, any contribution intentionally submitted
49 for inclusion in serde_urlencoded by you, as defined in the Apache-2.0 license,
50 shall be dual licensed as above, without any additional terms or conditions.