From 518c03316028ce353c34b87835d82e299fa22cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20B=C3=BCrkle?= <25956751+pabueco@users.noreply.github.com> Date: Mon, 20 May 2024 16:11:29 +0200 Subject: [PATCH] add optional async field to BenchmarkCase struct --- src/ser.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ser.rs b/src/ser.rs index 7b790ba..6c9f9e5 100644 --- a/src/ser.rs +++ b/src/ser.rs @@ -13,6 +13,7 @@ pub struct BenchmarkCase { pub id: String, pub code: String, pub name: String, + pub r#async: Option, pub dependencies: Option>, }