[package]
edition = "2024"
rust-version = "1.89"
name = "fionn-ops"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Operations and processors for fionn"
readme = "README.md"
keywords = [
"json",
"operations",
"transform",
]
categories = [
"parsing",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/darach/fionn"
resolver = "2"
[lib]
name = "fionn_ops"
path = "src/lib.rs"
[dependencies.ahash]
version = "=0.8.12"
[dependencies.bumpalo]
version = "3.19"
[dependencies.fionn-core]
version = "0.2.0"
[dependencies.fionn-crdt]
version = "0.2.0"
[dependencies.fionn-tape]
version = "0.2.0"
[dependencies.parking_lot]
version = "0.12"
[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