at this point we will not be deserializing the master make manifest until I can figure out a noninsane way to handle doing it

unstable
Penguin 3 years ago
parent 11fd986d44
commit e3708e9b68

@ -22,11 +22,6 @@ pub struct IglooTargetManifest
targets: HashMap::<String, String>, targets: HashMap::<String, String>,
} }
#[derive(Serialize,Deserialize,Debug)]
pub struct IglooMakeManifest
{
}
impl IglooTargetManifest impl IglooTargetManifest
{ {
@ -50,14 +45,6 @@ impl IglooTargetManifest
.to_str().unwrap() .to_str().unwrap()
)).unwrap(); )).unwrap();
let ret = target_manifest.try_into::<IglooTargetManifest>().unwrap(); let ret = target_manifest.try_into::<IglooTargetManifest>().unwrap();
println!("{:?}", ret); Ok(ret)
println!("{:?}", ret.targets["samd21j18a"]);
Ok(IglooTargetManifest::default())
} }
} }
impl IglooMakeManifest
{
}

Loading…
Cancel
Save