[package]
edition = "2024"
rust-version = "1.86"
name = "powerio-pkg"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The .pio.json compiler package: a versioned envelope around one PowerIO IR payload with explicit model kind, provenance, source maps, structured diagnostics, validation, and lowering history."
homepage = "https://eigenergy.github.io/powerio/"
documentation = "https://docs.rs/powerio-pkg"
readme = "README.md"
keywords = [
"powerio",
"compiler",
"ir",
"diagnostics",
"provenance",
]
categories = [
"science",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eigenergy/powerio"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "powerio_pkg"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.num-complex]
version = "0.4"
[dependencies.powerio]
version = "0.4.0"
[dependencies.powerio-dist]
version = "0.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1