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
While this crate does fit the use case I have for it, (that is, parsing and manipulating crates in non-embedded use cases) it'd be nice to add no_std support in case someone wants to use this crate.
The main barrier here is that IpAddr is not part of core; it is in std::net.
While this crate does fit the use case I have for it, (that is, parsing and manipulating crates in non-embedded use cases) it'd be nice to add
no_std
support in case someone wants to use this crate.The main barrier here is that
IpAddr
is not part ofcore
; it is instd::net
.Ipv4Addr
andIpv6Addr
, unfortunately, are apparently wrappers over the systemin
andin6
things…, which unfortunately means it'll be non-trivial to port away.I might need to implement
Ip.*Addr
things myself eventually.The text was updated successfully, but these errors were encountered: