From 805bd696dc20d99e3035bf1c11d7d138efb5b351 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Fri, 25 Aug 2023 01:45:20 +0200 Subject: [PATCH] httpd: Enable the `clock` feature in chrono Currently, radicle-httpd does not compile without this. Signed-off-by: Vincenzo Palazzo --- radicle-httpd/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicle-httpd/Cargo.toml b/radicle-httpd/Cargo.toml index ad94e627..74981baf 100644 --- a/radicle-httpd/Cargo.toml +++ b/radicle-httpd/Cargo.toml @@ -19,7 +19,7 @@ anyhow = { version = "1" } axum = { version = "0.6.7", default-features = false, features = ["headers", "json", "query", "tokio"] } axum-auth = { version= "0.4.0", default-features = false, features = ["auth-bearer"] } axum-server = { version = "0.5.1", default-features = false } -chrono = { version = "0.4.22", default-features = false } +chrono = { version = "0.4.22", default-features = false, features = ["clock"] } fastrand = { version = "2.0.0" } flate2 = { version = "1" } hyper = { version = "0.14.17", default-features = false }