[package]
edition = "2024"
name = "projd-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core project scanning data model and analysis helpers for Projd."
readme = "README.md"
keywords = [
"project",
"scanner",
"report",
"git",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
[lib]
name = "projd_core"
path = "src/lib.rs"
[[test]]
name = "code_stats"
path = "tests/code_stats.rs"
[[test]]
name = "dependencies"
path = "tests/dependencies.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "local_scan"
path = "tests/local_scan.rs"
[[test]]
name = "risks"
path = "tests/risks.rs"
[[test]]
name = "tests_summary"
path = "tests/tests_summary.rs"
[[test]]
name = "vcs"
path = "tests/vcs.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.ignore]
version = "0.4.25"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.toml]
version = "0.9.8"
[dev-dependencies.tempfile]
version = "3.23.0"