From e3708e9b68a2e1ee4870bde2f3dfb9e5594293fc Mon Sep 17 00:00:00 2001 From: Penguin Date: Wed, 22 Dec 2021 15:14:05 -0600 Subject: [PATCH] at this point we will not be deserializing the master make manifest until I can figure out a noninsane way to handle doing it --- igloo_core/src/igloo_manifest.rs | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/igloo_core/src/igloo_manifest.rs b/igloo_core/src/igloo_manifest.rs index ef77304..60b7964 100644 --- a/igloo_core/src/igloo_manifest.rs +++ b/igloo_core/src/igloo_manifest.rs @@ -22,11 +22,6 @@ pub struct IglooTargetManifest targets: HashMap::, } -#[derive(Serialize,Deserialize,Debug)] -pub struct IglooMakeManifest -{ - -} impl IglooTargetManifest { @@ -50,14 +45,6 @@ impl IglooTargetManifest .to_str().unwrap() )).unwrap(); let ret = target_manifest.try_into::().unwrap(); - println!("{:?}", ret); - println!("{:?}", ret.targets["samd21j18a"]); - Ok(IglooTargetManifest::default()) + Ok(ret) } } - -impl IglooMakeManifest -{ - -} -