From 5db6c4739adbc3c3773a2b63a42c91395f7306d4 Mon Sep 17 00:00:00 2001 From: Martichou Date: Sun, 22 Sep 2024 22:11:26 +0200 Subject: [PATCH] fix: init default crypto provider Signed-off-by: Martichou --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 0a89f11..3ae36a7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -80,6 +80,9 @@ async fn main() -> std::io::Result<()> { // Init logger/tracing tracing_subscriber::fmt::init(); + // default crypto provider + sproot::init_default_crypto(); + // Apply the migrations to the database apply_migration(&METRICSPOOL);