[package]
edition = "2021"
rust-version = "1.85"
name = "secfinding"
version = "0.3.0"
authors = ["Santh Project <contact@santh.dev>"]
build = false
exclude = [
"/target",
".idea",
".vscode",
".DS_Store",
"*.swp",
"*.profraw",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal security finding types for vulnerability scanners."
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"security",
"findings",
"vulnerability",
"scanner",
]
categories = [
"development-tools",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/secfinding"
[features]
default = []
[lib]
name = "secfinding"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "custom_reportable"
path = "examples/custom_reportable.rs"
[[example]]
name = "serialize_json"
path = "examples/serialize_json.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "audit_verify"
path = "tests/audit_verify.rs"
[[test]]
name = "break_it"
path = "tests/break_it.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent.rs"
[[test]]
name = "oom_simulation"
path = "tests/oom_simulation.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.chrono]
version = "=0.4.44"
features = ["serde"]
[dependencies.serde]
version = "=1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "=1.0.149"
[dependencies.toml]
version = "=0.8.23"
[dependencies.tracing]
version = "=0.1.44"
[dependencies.uuid]
version = "=1.23.0"
features = [
"v4",
"serde",
]
[dev-dependencies.proptest]
version = "=1.9.0"