rustfs-uring 0.1.0

Cancel-safe async io_uring read backend for RustFS storage.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"