From 9a051c120a41682786d5d189b14384e58e204554 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 9 Feb 2018 16:30:36 -0800 Subject: [PATCH] Update to num-traits 0.2 with no_std It now has a `std` feature, and uses `#![no_std]` otherwise. cc #362 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 85076f6b3..b4a79c538 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ appveyor = { repository = "serde-rs/json" } [dependencies] serde = "1.0" -num-traits = "0.1.32" +num-traits = { version = "0.2", default-features = false } linked-hash-map = { version = "0.5", optional = true } itoa = "0.3" dtoa = "0.4"