[package]
edition = "2024"
rust-version = "1.96"
name = "rustfs-uring"
version = "0.1.0"
build = false
exclude = ["docs/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cancel-safe async io_uring read backend for RustFS storage."
homepage = "https://rustfs.com"
documentation = "https://docs.rs/rustfs-uring"
readme = "README.md"
keywords = [
"io_uring",
"async",
"storage",
"rustfs",
"linux",
]
categories = [
"asynchronous",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/rustfs/uring"
[lib]
name = "rustfs_uring"
path = "src/lib.rs"
[[example]]
name = "concurrent_pread_bench"
path = "examples/concurrent_pread_bench.rs"
[[example]]
name = "streaming_bench"
path = "examples/streaming_bench.rs"
[[test]]
name = "cancel"
path = "tests/cancel.rs"
[dependencies.tokio]
version = "1.52.3"
features = ["sync"]
default-features = false
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7.13"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2.186"