docs.rs failed to build nio-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
nio-0.0.0
Nio
Nio is an experimental async runtime for Rust.
Nio focuses solely on providing an async runtime, It doesn't include additional utilities like. io
, sync
,
You'll still need to rely on libraries like tokio
for everything else.
Example
Add the following dependency to your Cargo.toml
:
[]
= "0.0.1"
Here is a basic echo server example:
use TcpListener;
use io;
use ;
async