From 514735e9204ca7cc6e307d43c08d7827bea4bd6d Mon Sep 17 00:00:00 2001 From: alex wennerberg Date: Mon, 5 Apr 2021 23:36:20 -0700 Subject: [PATCH 1/2] Remove unused features from chrono --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index aeabd5e..8b51e4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ bufstream = "0.1" imap-proto = "0.14.0" nom = "6.0" base64 = "0.13" -chrono = "0.4" +chrono = { version = "0.4", default-features = false } lazy_static = "1.4" [dev-dependencies] From bce16aae669625d6c1e03c6f722c41fd757813b5 Mon Sep 17 00:00:00 2001 From: alex wennerberg Date: Mon, 5 Apr 2021 23:48:35 -0700 Subject: [PATCH 2/2] Remove default-features from nom --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8b51e4d..848e8e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ native-tls = { version = "0.2.2", optional = true } regex = "1.0" bufstream = "0.1" imap-proto = "0.14.0" -nom = "6.0" +nom = { version = "6.0", default-features = false } base64 = "0.13" chrono = { version = "0.4", default-features = false } lazy_static = "1.4"