You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One thing we lose in using toml_edit for the parser is everything gets converted to an owned String before we deserialize, making it so borrows of the original source cannot happen.
In 0.6,
toml::from_str()
changed from having aDeserialize<'de>
bound to having aDeserializeOwned
bound. Why?The text was updated successfully, but these errors were encountered: