analyssa 0.4.1

Target-agnostic SSA IR, analyses, and optimization pipeline
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "analyssa"
version = "0.4.1"
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"]

[features]
serde = ["dep:serde"]

[lib]
name = "analyssa"
path = "src/lib.rs"

[[test]]
name = "builder_infrastructure"
path = "tests/builder_infrastructure.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 = "interproc"
path = "tests/interproc.rs"

[[test]]
name = "memory"
path = "tests/memory.rs"

[[test]]
name = "memory_opt"
path = "tests/memory_opt.rs"

[[test]]
name = "mock_target_pipeline"
path = "tests/mock_target_pipeline.rs"

[[test]]
name = "passes"
path = "tests/passes.rs"

[[test]]
name = "ranges_soundness"
path = "tests/ranges_soundness.rs"

[[test]]
name = "scheduling"
path = "tests/scheduling.rs"

[[test]]
name = "serde"
path = "tests/serde.rs"

[[test]]
name = "symbolic"
path = "tests/symbolic.rs"

[[test]]
name = "verifier"
path = "tests/verifier.rs"

[[bench]]
name = "ssa_repair"
path = "benches/ssa_repair.rs"
harness = false

[dependencies.boxcar]
version = "0.2.14"

[dependencies.dashmap]
version = "6.2.1"

[dependencies.log]
version = "0.4.33"

[dependencies.num_enum]
version = "0.7.6"

[dependencies.rayon]
version = "1.12.0"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0.19"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.serde_json]
version = "1.0.151"

[lints.clippy]
arithmetic_side_effects = "deny"
expect_used = "deny"
indexing_slicing = "deny"
panic = "deny"
unwrap_used = "deny"

[lints.rust]
missing_docs = "deny"