secfinding 0.3.0

Universal security finding types for vulnerability scanners.
Documentation
[package]
name = "secfinding"
version = "0.3.0"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["Santh Project <contact@santh.dev>"]
homepage = "https://santh.dev"
repository = "https://github.com/santhsecurity/secfinding"
description = "Universal security finding types for vulnerability scanners."
readme = "README.md"
keywords = ["security", "findings", "vulnerability", "scanner"]
categories = ["development-tools", "web-programming"]
exclude = ["/target", ".idea", ".vscode", ".DS_Store", "*.swp", "*.profraw"]

[features]
default = []
# `secir` bridge stays in-tree but is not exposed in the published
# crate — secir itself is unpublished, and a published optional dep
# requires a crates.io version. Re-enable once secir lands on
# crates.io with its own audit.
# json-schema feature temporarily disabled pending proper chrono/uuid schema support
# json-schema = ["dep:schemars"]

[dependencies]
chrono = { version = "=0.4.44", features = ["serde"] }
serde = { version = "=1.0.228", features = ["derive", "rc"] }
serde_json = "=1.0.149"
toml = "=0.8.23"
uuid = { version = "=1.23.0", features = ["v4", "serde"] }
tracing = "=0.1.44"
# schemars = { version = "0.8", optional = true }

[dev-dependencies]
proptest = "=1.9.0"