[package]
edition = "2024"
rust-version = "1.91.0"
name = "pineappl_v0"
version = "1.4.0"
authors = ["Christopher Schwan <handgranaten-herbert@posteo.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reads PineAPPL files written by PineAPPL version 0.x"
readme = "README.md"
keywords = [
"high-energy-physics",
"physics",
]
categories = ["science"]
license = "GPL-3.0-or-later"
repository = "https://github.com/NNPDF/pineappl"
resolver = "2"
[lib]
name = "pineappl_v0"
path = "src/lib.rs"
[dependencies.bincode]
version = "1.3.3"
[dependencies.enum_dispatch]
version = "0.3.7"
[dependencies.ndarray]
version = "0.17.2"
features = ["serde"]
[dependencies.serde]
version = "1.0.130"
features = ["derive"]
[dependencies.thiserror]
version = "1.0.30"
[lints.clippy]
cognitive-complexity = "allow"
module-name-repetitions = "allow"
similar-names = "allow"
too-many-lines = "allow"
unreadable-literal = "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]
missing-docs = "warn"
unsafe-op-in-unsafe-fn = "deny"