[package]
edition = "2021"
name = "async-rev-buf"
version = "0.1.0"
authors = ["Sandipsinh Rathod <sandipsinh@gpmcp.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance async buffered reader for reading lines in reverse order from files and streams"
readme = "README.md"
keywords = [
"async",
"reverse",
"buffer",
"tokio",
"lines",
]
categories = [
"asynchronous",
"filesystem",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/gpmcp/async-jsonl"
[lib]
name = "async_rev_buf"
path = "src/lib.rs"
[[example]]
name = "streaming_demo"
path = "examples/streaming_demo.rs"
[[test]]
name = "edge_tests"
path = "tests/edge_tests.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false
[dependencies.pin-project-lite]
version = "0.2.16"
[dependencies.tokio]
version = "1.45.1"
features = ["io-util"]
default-features = false
[dev-dependencies.criterion]
version = "0.6.0"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.rev_buf_reader]
version = "0.3"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio]
version = "1.45.1"
features = ["full"]
[dev-dependencies.tokio-rev-lines]
version = "0.2"