This PR fixes the serialization of the AppManifest in regards to the component dependencies section. Previously using try_from meant that during serialization, the dependencies section had an extra nested inner field, leading to an invalid manifest where spin up will error out due to an unknown inner field.
This PR fixes the serialization of the
AppManifest
in regards to the component dependencies section. Previously usingtry_from
meant that during serialization, the dependencies section had an extra nestedinner
field, leading to an invalid manifest wherespin up
will error out due to an unknowninner
field.