From f60cb5bdd6273db9c61816c3570b48e10baccdd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Fri, 2 Dec 2022 09:49:42 +0200 Subject: [PATCH] Disable chrono default features --- CHANGES.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 7f8fb995..a9effe04 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,10 @@ - +- The default features of the `chrono` dependency are now disabled + + - + ## 0.14 - Added new content to `README.md` and the root docs. diff --git a/Cargo.toml b/Cargo.toml index 6044233f..88cb01bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ libc = "0.2" geo-types = { version = "0.7.8" } gdal-sys = { path = "gdal-sys", version = "^0.8" } ndarray = { version = "0.15", optional = true } -chrono = { version = "0.4.23" } +chrono = { version = "0.4.23", default-features = false } bitflags = "1.3" once_cell = "1.9"