mrrc 0.7.4

A Rust library for reading, writing, and manipulating MARC bibliographic records in ISO 2709 binary format
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.71"
name = "mrrc"
version = "0.7.4"
authors = ["MARC Rust Community"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for reading, writing, and manipulating MARC bibliographic records in ISO 2709 binary format"
homepage = "https://github.com/dchud/mrrc"
documentation = "https://docs.rs/mrrc"
readme = "README.md"
keywords = [
    "marc",
    "bibliographic",
    "library",
    "metadata",
]
categories = [
    "encoding",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/dchud/mrrc"

[features]
default = []

[lib]
name = "mrrc"
path = "src/lib.rs"

[[bin]]
name = "mrrc"
path = "src/main.rs"

[[example]]
name = "authority_records"
path = "examples/authority_records.rs"

[[example]]
name = "bibframe_batch"
path = "examples/bibframe_batch.rs"

[[example]]
name = "bibframe_to_marc"
path = "examples/bibframe_to_marc.rs"

[[example]]
name = "concurrent_reading"
path = "examples/concurrent_reading.rs"

[[example]]
name = "concurrent_writing"
path = "examples/concurrent_writing.rs"

[[example]]
name = "creating_records"
path = "examples/creating_records.rs"

[[example]]
name = "format_conversion"
path = "examples/format_conversion.rs"

[[example]]
name = "marc8_encoding"
path = "examples/marc8_encoding.rs"

[[example]]
name = "marc_to_bibframe"
path = "examples/marc_to_bibframe.rs"

[[example]]
name = "marc_to_csv"
path = "examples/marc_to_csv.rs"

[[example]]
name = "multilingual_records"
path = "examples/multilingual_records.rs"

[[example]]
name = "rayon_poc"
path = "examples/rayon_poc.rs"

[[example]]
name = "reading_and_querying"
path = "examples/reading_and_querying.rs"

[[test]]
name = "bibframe_baseline_comparison"
path = "tests/bibframe_baseline_comparison.rs"

[[test]]
name = "bibframe_integration_tests"
path = "tests/bibframe_integration_tests.rs"

[[test]]
name = "bibframe_roundtrip_tests"
path = "tests/bibframe_roundtrip_tests.rs"

[[test]]
name = "bibframe_unit_tests"
path = "tests/bibframe_unit_tests.rs"

[[test]]
name = "bibframe_validation_tests"
path = "tests/bibframe_validation_tests.rs"

[[test]]
name = "concurrent_gil_tests"
path = "tests/concurrent_gil_tests.rs"

[[test]]
name = "field_accessors_macro"
path = "tests/field_accessors_macro.rs"

[[test]]
name = "field_linkage_integration"
path = "tests/field_linkage_integration.rs"

[[test]]
name = "field_query_helpers_comprehensive"
path = "tests/field_query_helpers_comprehensive.rs"

[[test]]
name = "field_query_integration"
path = "tests/field_query_integration.rs"

[[test]]
name = "indicator_validation"
path = "tests/indicator_validation.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "marc_record_trait"
path = "tests/marc_record_trait.rs"

[[test]]
name = "memory_safety_asan"
path = "tests/memory_safety_asan.rs"

[[test]]
name = "mods_conformance_tests"
path = "tests/mods_conformance_tests.rs"

[[test]]
name = "properties"
path = "tests/properties.rs"

[[test]]
name = "record_builder_generic"
path = "tests/record_builder_generic.rs"

[[test]]
name = "record_helpers_trait"
path = "tests/record_helpers_trait.rs"

[[bench]]
name = "detailed_profiling"
path = "benches/detailed_profiling.rs"
harness = false

[[bench]]
name = "marc_benchmarks"
path = "benches/marc_benchmarks.rs"
harness = false

[[bench]]
name = "parallel_benchmarks"
path = "benches/parallel_benchmarks.rs"
harness = false

[[bench]]
name = "profiling_harness"
path = "benches/profiling_harness.rs"
harness = false

[[bench]]
name = "rayon_file_io_profiling"
path = "benches/rayon_file_io_profiling.rs"
harness = false

[[bench]]
name = "rayon_profiling"
path = "benches/rayon_profiling.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.bytes]
version = "1.11.1"

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.csv]
version = "1.3"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.flate2]
version = "1.0"

[dependencies.indexmap]
version = "2.2"
features = ["serde"]

[dependencies.lazy_static]
version = "1.4"

[dependencies.memchr]
version = "2.7"

[dependencies.nom]
version = "8.0"

[dependencies.oxrdf]
version = "0.3"

[dependencies.oxrdfio]
version = "0.2"

[dependencies.quick-xml]
version = "0.39"
features = ["serialize"]

[dependencies.rayon]
version = "1.7"

[dependencies.regex]
version = "1.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.smallvec]
version = "1.11"
features = [
    "union",
    "serde",
]

[dependencies.thiserror]
version = "2.0"

[dependencies.unicode-normalization]
version = "0.1"

[dev-dependencies.criterion]
version = "4.3.0"
features = ["html_reports"]
package = "codspeed-criterion-compat"

[dev-dependencies.proptest]
version = "1.0"

[dev-dependencies.rayon]
version = "1.7"

[dev-dependencies.smallvec]
version = "1.11"
features = [
    "union",
    "serde",
]

[dev-dependencies.tempfile]
version = "3.8"

[lints.clippy]
cognitive_complexity = "warn"
module_name_repetitions = "allow"
similar_names = "allow"
type_complexity = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "deny"

[profile.bench]
debug = 2

[profile.release]
opt-level = 3