[package]
edition = "2024"
rust-version = "1.89"
name = "fionn-stream"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming JSON/JSONL processing for fionn"
readme = "README.md"
keywords = [
"json",
"jsonl",
"streaming",
]
categories = [
"parsing",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/darach/fionn"
resolver = "2"
[features]
all-formats = [
"yaml",
"toml",
"csv",
"ison",
"toon",
]
csv = ["fionn-simd/csv"]
default = []
ison = ["fionn-simd/ison"]
toml = ["fionn-simd/toml"]
toon = ["fionn-simd/toon"]
yaml = ["fionn-simd/yaml"]
[lib]
name = "fionn_stream"
path = "src/lib.rs"
[dependencies.ahash]
version = "=0.8.12"
[dependencies.bumpalo]
version = "3.19"
[dependencies.dashmap]
version = "6.1"
[dependencies.fionn-core]
version = "0.2.0"
[dependencies.fionn-ops]
version = "0.2.0"
[dependencies.fionn-simd]
version = "0.2.0"
[dependencies.fionn-tape]
version = "0.2.0"
[dependencies.memchr]
version = "2.7"
[dependencies.rayon]
version = "1.8"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.simd-json]
version = "0.14"
[dependencies.smallvec]
version = "1.13"
[lints.clippy]
cargo_common_metadata = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1