[package]
edition = "2024"
rust-version = "1.85"
name = "async-fs-io"
version = "0.2.0"
authors = ["Jacobus Geluk <jacobus.geluk@dataroad.com>"]
build = "build.rs"
include = [
"Cargo.toml",
"README.md",
"LICENSE-*",
"build.rs",
"src/**/*.rs",
"tests/**/*.rs",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async-first filesystem primitives, bounded reads, streaming directory access, and temporary resources"
documentation = "https://docs.rs/async-fs-io"
readme = "README.md"
keywords = [
"async",
"filesystem",
"tokio",
"streaming",
"io",
]
categories = [
"filesystem",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/legra-ai/async-fs-io"
[lib]
name = "async_fs_io"
path = "src/lib.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[dependencies.fs2]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"sync",
"rt",
"time",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
"test-util",
]
[build-dependencies.rhusky]
version = "0.0.6"
[lints.clippy]
all = "deny"
[lints.rust]
missing_docs = "deny"