The batteries for core that you never knew you needed: core+
Core+ contains traits that make it possible to write no_std
libraries that
are fully generic on the network and I/O stack.
This crate can be used with standard library types by enabling the std
feature.
toml
[dependencies]
coreplus = { version = "0.1.2", features = ["std"] }
Enabling the unstable
feature will add *_vectored
methods to the [io::AsyncRead
], [io::AsyncWrite
],
[io::Read
], and [io::Write
] traits.
toml
[dependencies]
coreplus = { version = "0.1.2", features = ["unstable"] }