We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no_std
At least the protocol crate could work without std which might be interesting for WASM support.
std
The nom crate dependency supports no_std. A whole bunch of code needs Vec and thus alloc. https://github.com/rust-lang/rust/releases/tag/1.77.0 stabilized core::net so SocketAddr in struct would work.
nom
Vec
alloc
core::net
SocketAddr
struct
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At least the protocol crate could work without
std
which might be interesting for WASM support.The
nom
crate dependency supportsno_std
.A whole bunch of code needs
Vec
and thusalloc
.https://github.com/rust-lang/rust/releases/tag/1.77.0 stabilized
core::net
soSocketAddr
instruct
would work.The text was updated successfully, but these errors were encountered: