From 964d54ee3dbab6bf9c8c7026a4c22bf0ea34f36e Mon Sep 17 00:00:00 2001 From: Fredi Raspall Date: Wed, 14 Jan 2026 11:37:14 +0100 Subject: [PATCH] feat(config): set alloc feature in chrono dependency Enable the alloc feature of chrono, which gates method DateTime::to_rfc3339_opts(). Otherwise, tests for the config crate fail if run separately. Signed-off-by: Fredi Raspall --- config/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/Cargo.toml b/config/Cargo.toml index b8edc5633..38c200af9 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -14,7 +14,7 @@ tracectl = { workspace = true } k8s-intf = { workspace = true } # external -chrono = { workspace = true } +chrono = { workspace = true, features = ["alloc"] } derive_builder = { workspace = true, default-features = false, features = ["default"] } ipnet = { workspace = true } linkme = { workspace = true }