[package]
edition = "2021"
name = "async-jsonl"
version = "0.4.0"
authors = ["Sandipsinh Rathod <sandipsinh@gpmcp.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An efficient async Rust library for reading and processing JSON Lines (JSONL) files using Tokio streams."
readme = "README.md"
keywords = [
"jsonl",
"json",
"async",
"tokio",
"streaming",
]
categories = [
"asynchronous",
"parser-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/gpmcp/async-jsonl"
[lib]
name = "async_jsonl"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.async-trait]
version = "0.1.88"
[dependencies.futures]
version = "0.3.31"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.tokio]
version = "1.45.1"
features = [
"fs",
"io-util",
]
default-features = false
[dev-dependencies]