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
I noticed that the serializing feature does not only need serde but also std. I couldn't find the reason for it in the code, so my question is if serializing would also work without std?
The text was updated successfully, but these errors were encountered:
I think, if I remember correctly, the derive macros were using std for something, but it has been a while since I last checked. I'm happy to remove that requirement if it's no longer necessary, but it may perhaps be a 0.8 change. It would remove observable features for someone who only explicitly uses serializing. 🤔
I checked the documentation the other day and there should not be a requirement on std anymore. This can be done in a non-breaking way by deprecating serializing and using serde as the feature name. I would like to do that regardless.
I noticed that the serializing feature does not only need
serde
but alsostd
. I couldn't find the reason for it in the code, so my question is ifserializing
would also work withoutstd
?The text was updated successfully, but these errors were encountered: