portable-io 0.0.1

" A subset of Rust `std::io` functionality supported for `no-std`.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "portable-io"
version = "0.0.1"
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/brodycj/portable-io"
description = """"
A subset of Rust `std::io` functionality supported for `no-std`.
"""

[dependencies]
libc = { version = "0.2.169", default-features = false }

[features]
# TODO: finer-grained feature options
alloc = []