diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-28 23:56:15 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-29 10:22:39 +0100 |
commit | 1d88bbb26b9caaa90993845042e21af444e9399a (patch) | |
tree | 598348627d8992330406ab6414ffd0cadf8d696f /src/lib.rs | |
parent | e140c2b5c5bb5abab7fcc6a9d4540aaa3bf566a6 (diff) |
Use itoa to not allocate a String to serialize an integer
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,5 +1,6 @@ //! `x-www-form-urlencoded` meets Serde +extern crate itoa; #[macro_use] extern crate serde; extern crate url; |