From 307357d4047192291754bd47f4922d880c5419a8 Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Mon, 15 Jul 2019 22:54:23 +0100 Subject: [PATCH] Refrain from using std features in byteorder --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c1cd0f3..eb6f3ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ alloc = [] default = ["chrono", "std", "alloc"] [dependencies] -byteorder = "1" +byteorder = { version = "1", default-features = false } bitflags = "1.0" log = "0.4" chrono = { version = "0.4", optional = true }