diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-29 00:14:57 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-29 10:22:40 +0100 |
commit | 5625c254e55c767a1ec0235219c232f53dcf9e96 (patch) | |
tree | 6dc02bbd510eb87aaac46abbd19a0bcd42193033 /src/lib.rs | |
parent | 1d88bbb26b9caaa90993845042e21af444e9399a (diff) |
Use dtoa to not allocate a String to serialize a float
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ //! `x-www-form-urlencoded` meets Serde extern crate itoa; +extern crate dtoa; #[macro_use] extern crate serde; extern crate url; |