docs.rs failed to build deno_io-0.167.0
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:
deno_io-0.166.0
deno_io
This crate provides IO primitives for other Deno extensions, this includes stdio streams and abstraction over File System files.
Usage Example
From javascript, include the extension's source:
import from "ext:core/mod.js";
const io = core.;
Then from rust, provide: deno_io::deno_io::init(Option<deno_io::Stdio>) in the
extensions field of your RuntimeOptions
Where deno_io::Stdio implements Default, and can therefore be provided as
Some(deno_io::Stdio::default())
Dependencies
- deno_web: Provided by the
deno_webcrate - deno_tty: Provided in
deno/runtime/ops/tty.rs