From 13120f099c6334e7f035e04144a323b52ac147b9 Mon Sep 17 00:00:00 2001 From: rascul Date: Thu, 21 Jul 2022 21:31:52 -0500 Subject: [PATCH] rename field for serde so can use app in apps.toml because it makes more sense to call an app an app instead of an apps --- src/apps.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps.rs b/src/apps.rs index 298b166..afd1045 100644 --- a/src/apps.rs +++ b/src/apps.rs @@ -16,6 +16,7 @@ use crate::result::Result; #[derive(Debug, Deserialize)] pub struct Apps { /// List of apps to start and monitor + #[serde(rename = "app")] apps: Vec, }