[[bench]]
name = "fast_streaming_benchmark"
path = "benches/fast_streaming_benchmark.rs"
[[bench]]
harness = false
name = "memory"
path = "benches/memory.rs"
[[bench]]
harness = false
name = "parsing"
path = "benches/parsing.rs"
[[bench]]
harness = false
name = "streaming"
path = "benches/streaming.rs"
[[bin]]
name = "ddex-parser"
path = "src/main.rs"
[[bin]]
name = "generate-bench-report"
path = "src/bin/bench_report.rs"
required-features = ["async"]
[[bin]]
name = "test_depth_fix"
path = "src/bin/test_depth_fix.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1.5"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.clap]
features = ["derive", "env", "color", "suggestions"]
version = "4.4"
[dependencies.clap_complete]
version = "4.4"
[dependencies.colored]
version = "2.1"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.csv]
version = "1.3"
[dependencies.ddex-core]
version = "0.4.5"
[dependencies.env_logger]
version = "0.11"
[dependencies.futures]
optional = true
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.html-escape]
version = "0.2"
[dependencies.indexmap]
version = "2.5"
[dependencies.indicatif]
version = "0.17"
[dependencies.log]
version = "0.4"
[dependencies.memchr]
version = "2.7"
[dependencies.num_cpus]
version = "1.16"
[dependencies.parking_lot]
version = "0.12"
[dependencies.quick-xml]
version = "0.36"
[dependencies.rayon]
version = "1.10"
[dependencies.rmp-serde]
version = "1.3"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
optional = true
version = "1.35"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.ts-rs]
optional = true
version = "7.1"
[dependencies.uuid]
features = ["v4", "serde", "js"]
version = "1.5"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.insta]
version = "1.34"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.test-case]
version = "3.1"
[[example]]
name = "fast_streaming_usage"
path = "examples/fast_streaming_usage.rs"
[[example]]
name = "selective_isrc_extraction"
path = "examples/selective_isrc_extraction.rs"
[[example]]
name = "xpath_selector_usage"
path = "examples/xpath_selector_usage.rs"
[features]
async = ["tokio", "futures"]
bench = []
default = ["async"]
performance-debug = []
simd = []
typescript = ["ts-rs", "ddex-core/ts-rs"]
wasm = []
zero-copy = []
[lib]
name = "ddex_parser"
path = "src/lib.rs"
[package]
authors = ["Kevin Marques Moo <daddykev.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["parser-implementations", "multimedia::audio"]
description = "High-performance DDEX XML parser with SIMD optimization (40+ MB/s)"
documentation = "https://docs.rs/ddex-parser"
edition = "2021"
exclude = ["*.bak", "*.backup", "*.log", "*.tmp", "tests/integration/*.ts"]
homepage = "https://github.com/daddykev/ddex-suite"
keywords = ["ddex", "xml", "parser", "music", "metadata"]
license = "MIT"
name = "ddex-parser"
readme = "README.md"
repository = "https://github.com/daddykev/ddex-suite"
version = "0.4.5"
[[test]]
name = "comprehensive_test"
path = "tests/comprehensive_test.rs"
[[test]]
name = "depth_limit_test"
path = "tests/depth_limit_test.rs"
[[test]]
name = "error_contract_test"
path = "tests/error_contract_test.rs"
[[test]]
name = "fast_streaming_test"
path = "tests/fast_streaming_test.rs"
[[test]]
name = "final_v0_4_0_validation"
path = "tests/final_v0_4_0_validation.rs"
[[test]]
name = "improved_failing_tests"
path = "tests/improved_failing_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "malformed_xml_test"
path = "tests/malformed_xml_test.rs"
[[test]]
name = "model_consistency"
path = "tests/model_consistency.rs"
[[test]]
name = "parser_builder_integration"
path = "tests/parser_builder_integration.rs"
[[test]]
name = "phase2_complete"
path = "tests/phase2_complete.rs"
[[test]]
name = "playground_regression_test"
path = "tests/playground_regression_test.rs"
[[test]]
name = "run_performance_benchmarks"
path = "tests/run_performance_benchmarks.rs"
[[test]]
name = "simple_performance_validation"
path = "tests/simple_performance_validation.rs"
[[test]]
name = "streaming_integration_test"
path = "tests/streaming_integration_test.rs"
[[test]]
name = "streaming_performance_tests"
path = "tests/streaming_performance_tests.rs"
[[test]]
name = "test_categories"
path = "tests/test_categories.rs"
[[test]]
name = "test_depth_fix"
path = "tests/test_depth_fix.rs"
[[test]]
name = "test_fast_streaming_connection"
path = "tests/test_fast_streaming_connection.rs"
[[test]]
name = "test_phase_2_1"
path = "tests/test_phase_2_1.rs"
[[test]]
name = "type_conversion_test"
path = "tests/type_conversion_test.rs"
[[test]]
name = "utf8_handling_test"
path = "tests/utf8_handling_test.rs"
[[test]]
name = "v0_4_0_final_tests"
path = "tests/v0_4_0_final_tests.rs"
[[test]]
name = "v0_4_0_production"
path = "tests/v0_4_0_production.rs"
[[test]]
name = "validate_performance_achievement"
path = "tests/validate_performance_achievement.rs"
[[test]]
name = "vendor_quirks"
path = "tests/vendor_quirks.rs"
[[test]]
name = "version_detection"
path = "tests/version_detection.rs"
[[test]]
name = "version_migration"
path = "tests/version_migration.rs"
[[test]]
name = "version_parsing"
path = "tests/version_parsing.rs"
[[test]]
name = "version_summary"
path = "tests/version_summary.rs"
[[test]]
name = "version_works"
path = "tests/version_works.rs"
[[test]]
name = "working_test_improvements"
path = "tests/working_test_improvements.rs"