[package]
edition = "2024"
name = "axio"
version = "0.5.0"
authors = ["Yuekai Jia <equation618@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`std::io` for `no_std` environment"
homepage = "https://github.com/arceos-org/arceos"
documentation = "https://docs.rs/axio"
readme = "README.md"
keywords = [
"arceos",
"io",
"no-std",
]
categories = ["no-std"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
repository = "https://github.com/arceos-org/axio"
[features]
alloc = []
default = []
[lib]
name = "axio"
path = "src/lib.rs"
[[test]]
name = "buffered"
path = "tests/buffered.rs"
[[test]]
name = "copy"
path = "tests/copy.rs"
[[test]]
name = "cursor"
path = "tests/cursor.rs"
[[test]]
name = "impls"
path = "tests/impls.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[[test]]
name = "iobuf"
path = "tests/iobuf.rs"
[[test]]
name = "iofn"
path = "tests/iofn.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[dependencies.axerrno]
version = "0.4.2"
[dependencies.heapless]
version = "0.9"
[dependencies.memchr]
version = "2"
default-features = false
[build-dependencies.autocfg]
version = "1"