From 645d55804a2299c651d8d48a6c3310f991dd226a Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Fri, 18 Feb 2022 14:16:41 -0500 Subject: [PATCH] do not request oldtime feature from chrono package - this removes the dependency on the old (unsupported) version of time --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 05c044f7..862ef858 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ fast_chemail = "0.9.6" # Feature optional dependencies bson = { version = "2.0.0", optional = true, features = ["chrono-0_4"] } -chrono = { version = "0.4.19", optional = true } +chrono = { version = "0.4.19", optional = true, default-features = false, features = ["clock", "std"] } chrono-tz = { version = "0.5.3", optional = true } hashbrown = { version = "0.12.0", optional = true } iso8601-duration = { version = "0.1.0", optional = true }