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
There are some instances where parsing of structs (core::str::FromStr) makes use of the implementations provided by the standard library. Problematically, these are defined in std and not in core such that this depends on the std feature. This makes the trait implementations inconsistent and makes the dependency quite a lot heavier.
Instead, such parsing should be implemented in a standalone version (possibly with a dedicated, small dependency).
The text was updated successfully, but these errors were encountered:
Turns out that all features rely on std, not only sys, in some capacity.
Most of the failures are from parsing of address which is implemented in
terms of std (see #26).
There are some instances where parsing of structs (
core::str::FromStr
) makes use of the implementations provided by the standard library. Problematically, these are defined instd
and not incore
such that this depends on thestd
feature. This makes the trait implementations inconsistent and makes the dependency quite a lot heavier.Instead, such parsing should be implemented in a standalone version (possibly with a dedicated, small dependency).
The text was updated successfully, but these errors were encountered: