From 72845741f19d77132b505468e989d225b4c21fff Mon Sep 17 00:00:00 2001 From: Vaclav Barta Date: Thu, 25 Jul 2024 08:08:16 +0200 Subject: [PATCH] fix: abort on panic in tokio thread --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f2287dd..f9893ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,9 @@ edition = "2021" [workspace] members = ["state-reconstruct-fetcher", "state-reconstruct-storage"] +[profile.release] +panic = 'abort' + [dependencies] async-trait = "0.1.74" bincode = "1"