From b9c31dfc7d280977e7b98d4a6a7d94b805621fe2 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Sat, 6 May 2017 16:22:43 -0400 Subject: [PATCH] Lock down chrono version to one that uses serde 0.9 --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ea63a2e..af16166 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,5 +16,7 @@ serde_json = "0.9" serde_derive = "0.9" [dependencies.chrono] -version = "0.3" +# Locked to 0.3.0 since chrono 0.3.1 uses serde ^1, which is incompatible +# with serde 0.9 specified above. +version = "=0.3.0" features = ["serde"]