[package]
edition = "2021"
name = "endf"
version = "0.1.0"
build = false
exclude = [
"src/bin/bench_*.rs",
"src/bin/profile_*.rs",
"src/bin/compile_*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Recipe-driven parser and writer for ENDF-6 nuclear data files"
homepage = "https://github.com/gschnabel/endf-parserpy-rs"
readme = "README.md"
keywords = [
"endf",
"nuclear-data",
"parser",
"fortran",
"nuclear-physics",
]
categories = [
"parser-implementations",
"science",
]
license = "MIT"
repository = "https://github.com/gschnabel/endf-parserpy-rs"
[features]
default = ["parallel"]
parallel = [
"rayon",
"rayon-core",
]
[lib]
name = "endf"
path = "src/lib.rs"
[[bin]]
name = "endf_tool"
path = "src/bin/endf_tool.rs"
[[test]]
name = "bulk_roundtrip_test"
path = "tests/bulk_roundtrip_test.rs"
[[test]]
name = "engine_integration"
path = "tests/engine_integration.rs"
[[test]]
name = "find_raw_sections"
path = "tests/find_raw_sections.rs"
[[test]]
name = "new_features_test"
path = "tests/new_features_test.rs"
[[test]]
name = "pest_grammar_test"
path = "tests/pest_grammar_test.rs"
[[test]]
name = "real_file_test"
path = "tests/real_file_test.rs"
[[test]]
name = "roundtrip_test"
path = "tests/roundtrip_test.rs"
[[test]]
name = "targeted_roundtrip_test"
path = "tests/targeted_roundtrip_test.rs"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.pest]
version = "2"
[dependencies.pest_derive]
version = "2"
[dependencies.rayon]
version = "=1.8.0"
optional = true
[dependencies.rayon-core]
version = "=1.12.0"
optional = true
[dependencies.rustc-hash]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"