[package]
edition = "2021"
name = "mir-analyzer"
version = "0.4.1"
authors = ["Jorg Sowa <jorg.sowa@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Analysis engine for the mir PHP static analyzer"
homepage = "https://github.com/jorgsowa/mir"
readme = false
license = "MIT"
repository = "https://github.com/jorgsowa/mir"
[lib]
name = "mir_analyzer"
path = "src/lib.rs"
[[test]]
name = "cache_invalidation"
path = "tests/cache_invalidation.rs"
[[test]]
name = "definition_positions"
path = "tests/definition_positions.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "incremental_reanalysis"
path = "tests/incremental_reanalysis.rs"
[[test]]
name = "lazy_load"
path = "tests/lazy_load.rs"
[[test]]
name = "type_env"
path = "tests/type_env.rs"
[dependencies.bumpalo]
version = "3"
features = ["collections"]
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.mir-codebase]
version = "0.4.1"
[dependencies.mir-issues]
version = "0.4.1"
[dependencies.mir-types]
version = "0.4.1"
[dependencies.php-ast]
version = "0.6.0"
[dependencies.php-rs-parser]
version = "0.6.0"
[dependencies.quick-xml]
version = "0.36"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dev-dependencies.mir-issues]
version = "0.4.1"
[dev-dependencies.tempfile]
version = "3.27.0"