[package]
edition = "2024"
name = "ax-io"
version = "0.5.4"
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"
readme = "README.md"
keywords = [
"arceos",
"io",
"no-std",
]
categories = ["no-std"]
license = "Apache-2.0"
repository = "https://github.com/rcore-os/tgoskits"
[features]
alloc = []
default = []
[lib]
name = "ax_io"
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.ax-errno]
version = "0.4"
[dependencies.heapless]
version = "0.9"
[dependencies.memchr]
version = "2"
default-features = false
[build-dependencies.autocfg]
version = "1"