[package]
edition = "2021"
rust-version = "1.89"
name = "fleetreach-core"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain types for fleetreach + the shared toolchain-free OSV feeder scaffolding. No rustsec types in the public API."
homepage = "https://tess-fun.github.io/fleetreach/"
readme = "README.md"
keywords = [
"security",
"audit",
"rustsec",
"advisory",
"vulnerability",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tess-fun/fleetreach"
[lib]
name = "fleetreach_core"
path = "src/lib.rs"
[[test]]
name = "reachability"
path = "tests/reachability.rs"
[[test]]
name = "serialization"
path = "tests/serialization.rs"
[[test]]
name = "verdict"
path = "tests/verdict.rs"
[dependencies.cvss]
version = "2"
[dependencies.rayon]
version = "1"
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"