[package]
edition = "2021"
rust-version = "1.86"
name = "rustinel-core"
version = "0.1.1"
build = false
exclude = ["fuzz"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Defensive Rust supply-chain risk analysis: static signals, policy and risk diff for Cargo lockfiles."
readme = "README.md"
keywords = [
"security",
"supply-chain",
"cargo",
"sbom",
"audit",
]
categories = [
"development-tools::cargo-plugins",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kosiorkosa47/rustinel"
[features]
fuzz = []
[lib]
name = "rustinel_core"
path = "src/lib.rs"
[[test]]
name = "fuzz_robustness"
path = "tests/fuzz_robustness.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "proactive_attacks"
path = "tests/proactive_attacks.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[dependencies.cargo-lock]
version = "11"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.insta]
version = "1"
features = ["json"]