[package]
edition = "2024"
name = "io-engine"
version = "0.10.0"
authors = ["plan <frostyplanet@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Library for block-based IO, intend to mask AIO/io_uring underneath.
"""
documentation = "https://docs.rs/io-engine"
readme = "README.md"
keywords = [
"io",
"aio",
"io_uring",
]
license = "MIT"
repository = "https://github.com/NaturalIO/io-engine"
[features]
compress = []
default = []
[lib]
name = "io_engine"
path = "src/lib.rs"
[[bench]]
name = "channel_bench"
path = "benches/channel_bench.rs"
harness = false
[dependencies.captains-log]
version = "0"
[dependencies.crossfire]
version = ">=3.1.9"
[dependencies.embed-collections]
version = ">=0.5"
default-features = false
[dependencies.io-buffer]
version = "1"
[dependencies.io-engine-aio-bindings]
version = "0.1"
[dependencies.io-uring]
version = "0.7"
[dependencies.libc]
version = "0"
[dependencies.log]
version = "0.4"
[dependencies.rustix]
version = "1"
features = ["fs"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.fastrand]
version = "2.3"
[dev-dependencies.io-buffer]
version = "1"
features = ["rand"]
[dev-dependencies.md5]
version = "0"
[dev-dependencies.rstest]
version = "0"
[lints.clippy]
len_without_is_empty = "allow"
mut_from_ref = "allow"
needless_range_loop = "allow"
needless_return = "allow"
new_ret_no_self = "allow"
transmute_ptr_to_ref = "allow"
type_complexity = "allow"