[[bench]]
harness = false
name = "parallel_benchmark"
path = "benches/parallel_benchmark.rs"
[dependencies.fast-yaml-core]
version = "0.5.0"
[dependencies.memmap2]
version = "0.9"
[dependencies.num_cpus]
version = "1.17"
[dependencies.rayon]
version = "1.11"
[dependencies.tempfile]
version = "3.24"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"
[dev-dependencies.fast-yaml-core]
version = "0.5.0"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.tempfile]
version = "3.24"
[lib]
name = "fast_yaml_parallel"
path = "src/lib.rs"
[lints.clippy]
cargo_common_metadata = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "allow"
missing_docs = "warn"
unsafe_code = "deny"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing", "concurrency"]
description = "Multi-threaded YAML processing with work-stealing parallelism"
edition = "2024"
keywords = ["yaml", "parallel", "rayon", "performance", "parser"]
license = "MIT OR Apache-2.0"
name = "fast-yaml-parallel"
readme = "README.md"
repository = "https://github.com/bug-ops/fast-yaml"
resolver = "2"
rust-version = "1.88.0"
version = "0.5.0"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"