summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-01-29 00:14:57 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2017-01-29 10:22:40 +0100
commit5625c254e55c767a1ec0235219c232f53dcf9e96 (patch)
tree6dc02bbd510eb87aaac46abbd19a0bcd42193033 /src/lib.rs
parent1d88bbb26b9caaa90993845042e21af444e9399a (diff)
Use dtoa to not allocate a String to serialize a float
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7a3be26..8fefd77 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,7 @@
//! `x-www-form-urlencoded` meets Serde
extern crate itoa;
+extern crate dtoa;
#[macro_use]
extern crate serde;
extern crate url;