#io-error #stdio #read #read-write #alloc #buffer #traits

no-std no_std_io

The bare essentials of std::io for use in no_std. Alloc support is optional.

4 releases

0.6.0 Jun 11, 2023
0.5.3 Jun 11, 2023
0.5.2 Jun 11, 2023
0.5.1 Jun 11, 2023
0.5.0 Jun 11, 2023

#71 in No standard library

Download history 223/week @ 2024-01-02 260/week @ 2024-01-09 682/week @ 2024-01-16 178/week @ 2024-01-23 218/week @ 2024-01-30 163/week @ 2024-02-06 97/week @ 2024-02-13 60/week @ 2024-02-20 102/week @ 2024-02-27 82/week @ 2024-03-05 92/week @ 2024-03-12 54/week @ 2024-03-19 97/week @ 2024-03-26 503/week @ 2024-04-02 439/week @ 2024-04-09 195/week @ 2024-04-16

1,243 downloads per month
Used in 11 crates (5 directly)

Apache-2.0 OR MIT

130KB
1.5K SLoC

no-std-io

Actions Status Documentation Minimum Supported Rust Version (MSRV)

Fork

no-std-io is a fork of core2.

Overview

Ever wanted a Cursor or the Error trait in no_std? Well now you can have it. A 'fork' of Rust's std modules for no_std environments, with the added benefit of optionally taking advantage of alloc.

The goal of this crate is to provide a stable interface for building I/O and error trait functionality in no_std environments. The current code corresponds to the most recent stable API of Rust 1.56.0. It is also a goal to achieve a true alloc-less experience, with opt-in alloc support.

This crate works on stable with some limitations in functionality, and nightly without limitations by adding the relevant feature flag.

This crate is std by default -- use no default features to get no_std mode.

Usage

[dependencies]
no_std_io = "0.5"

Add the crate, use the things you would usually want from std::io, but instead from no_std_io::io, and use no_std_io::error::Error in place of std::error::Error.

Features

  • std: enables std pass-throughs for the polyfilled types, but allows accessing the new types
  • alloc: enable aspects of the Read and Write traits that require alloc support (WIP)
  • nightly: enables nightly-only features, such as BufReader and BufWriter with const generic buffers.

Differences to std::io

  • No std::io::Error, so we have our own copy without any Os error functions
  • IoSlice and the *_vectored family of functions are not implemented.
  • BufReader and BufWriter have a different signature, as they now use a const generic bounded array for the internal buffer. (Requires nightly feature)

Other than items perhaps being entirely missing or certain functions unavailable on some traits, no function signatures have been changed.

Limitations

  • Using the buffer types currently requires nightly due to the use of const generics.
  • Using copy or the buffer types with std support currently requires nightly due to the initializer API.

License

Licensed under either of

at your option.


Almost all of the code in this repository is a copy of the Rust language codebase with minor modifications.

For attributions, see https://thanks.rust-lang.org/.

Dependencies

~170–315KB