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 -{ - -} -