[package]
edition = "2024"
name = "ripbi-core"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static analysis engine for Power BI semantic models: TMDL and PBIR ingestion, DAX reference extraction, dependency graph, and reachability"
readme = "README.md"
keywords = [
"powerbi",
"dax",
"static-analysis",
"dependency-graph",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bgarcevic/ripbi"
[lib]
name = "ripbi_core"
path = "src/lib.rs"
[[example]]
name = "graph"
path = "examples/graph.rs"
[[example]]
name = "parse-pbir"
path = "examples/parse-pbir.rs"
[[test]]
name = "dax_fixtures"
path = "tests/dax_fixtures.rs"
[[test]]
name = "dead_chain_fixtures"
path = "tests/dead_chain_fixtures.rs"
[[test]]
name = "dynamic_m_parameters_fixtures"
path = "tests/dynamic_m_parameters_fixtures.rs"
[[test]]
name = "graph_fixtures"
path = "tests/graph_fixtures.rs"
[[test]]
name = "m_fixtures"
path = "tests/m_fixtures.rs"
[[test]]
name = "pbir_fixtures"
path = "tests/pbir_fixtures.rs"
[[test]]
name = "pbir_samples"
path = "tests/pbir_samples.rs"
[[test]]
name = "tmdl_fixtures"
path = "tests/tmdl_fixtures.rs"
[[test]]
name = "tmdl_samples"
path = "tests/tmdl_samples.rs"
[dependencies.petgraph]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.zip]
version = "8"
[dev-dependencies.rstest]
version = "0.27"
[lints.clippy.all]
level = "deny"
priority = 10
[lints.clippy.needless_collect]
level = "deny"
priority = 9
[lints.clippy.redundant_clone]
level = "deny"
priority = 9
[lints.rust]
future_incompatible = "warn"
nonstandard_style = "deny"