[package]
edition = "2021"
rust-version = "1.88"
name = "analyssa"
version = "0.1.0"
authors = ["Johann Kempter <admin@binflip.rs>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Target-agnostic SSA IR, analyses, and optimization pipeline"
documentation = "https://docs.rs/analyssa"
readme = "README.md"
keywords = [
"ssa",
"ir",
"compiler",
"analysis",
"optimization",
]
categories = [
"compilers",
"development-tools",
]
license = "Apache-2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--document-private-items"]
[lib]
name = "analyssa"
path = "src/lib.rs"
[[test]]
name = "control"
path = "tests/control.rs"
[[test]]
name = "dataflow"
path = "tests/dataflow.rs"
[[test]]
name = "diamond"
path = "tests/diamond.rs"
[[test]]
name = "evaluator"
path = "tests/evaluator.rs"
[[test]]
name = "infra"
path = "tests/infra.rs"
[[test]]
name = "memory"
path = "tests/memory.rs"
[[test]]
name = "mock_target_pipeline"
path = "tests/mock_target_pipeline.rs"
[[test]]
name = "passes"
path = "tests/passes.rs"
[[test]]
name = "symbolic"
path = "tests/symbolic.rs"
[[test]]
name = "verifier"
path = "tests/verifier.rs"
[dependencies.boxcar]
version = "0.2.14"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.log]
version = "0.4.29"
[dependencies.rayon]
version = "1.12.0"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies]
[lints.clippy]
arithmetic_side_effects = "deny"
expect_used = "deny"
indexing_slicing = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"