From c90a7fff49f107d0183ed244f819734c9f73fa9c Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Mon, 22 Jul 2024 17:53:12 -0700 Subject: [PATCH] fix: enable `clock` and `std` features of chrono for the workspace fixes #3332 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9653a389..bad64fa0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -132,7 +132,7 @@ sqlx = { version = "=0.8.0-alpha.0", path = ".", default-features = false } # These are optional unless enabled in a workspace crate. bigdecimal = "0.4.0" bit-vec = "0.6.3" -chrono = { version = "0.4.34", default-features = false } +chrono = { version = "0.4.34", default-features = false, features = ["std", "clock"] } ipnetwork = "0.20.0" mac_address = "1.1.5" rust_decimal = { version = "1.26.1", default-features = false, features = ["std"] }