From f4735dd16b7bcd570c48b05e8a0a1830e1158ff6 Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Thu, 17 Aug 2023 23:12:05 -0400 Subject: [PATCH] Add some imports that the configuration library needs --- config/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/src/lib.rs b/config/src/lib.rs index 204ac77..1c2b36b 100644 --- a/config/src/lib.rs +++ b/config/src/lib.rs @@ -95,6 +95,9 @@ macro_rules! define_config { mod test { use super::*; use cool_asserts::assert_matches; + use serde::{Deserialize, Serialize}; + use std::collections::HashMap; + use std::path::PathBuf; define_config! { DatabasePath(DatabasePath),