[package]
edition = "2021"
name = "decy-analyzer"
version = "2.1.0"
authors = ["Decy Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static analysis and type inference for C code"
homepage = "https://github.com/paiml/decy"
documentation = "https://docs.rs/decy"
readme = false
keywords = [
"c",
"rust",
"transpiler",
"compiler",
"static-analysis",
]
categories = [
"development-tools",
"compilers",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/paiml/decy"
[lib]
name = "decy_analyzer"
path = "src/lib.rs"
[[test]]
name = "lock_analysis_tests"
path = "tests/lock_analysis_tests.rs"
[[test]]
name = "output_params_tests"
path = "tests/output_params_tests.rs"
[[test]]
name = "subprocess_analysis_tests"
path = "tests/subprocess_analysis_tests.rs"
[[test]]
name = "tagged_union_tests"
path = "tests/tagged_union_tests.rs"
[[test]]
name = "void_ptr_analysis_tests"
path = "tests/void_ptr_analysis_tests.rs"
[[bench]]
name = "analyzer_benchmarks"
path = "benches/analyzer_benchmarks.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.decy-hir]
version = "2.0.0"
[dependencies.petgraph]
version = "0.6"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"