[package]
edition = "2021"
rust-version = "1.85"
name = "secreport"
version = "0.3.0"
authors = ["Santh Project <contact@santh.dev>"]
build = false
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Output formatters for security findings — JSON, JSONL, SARIF, Markdown, Text"
homepage = "https://github.com/santhsecurity/secreport"
readme = "README.md"
keywords = [
"security",
"sarif",
"reporting",
"jsonl",
"findings",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/secreport"
[lib]
name = "secreport"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "custom_reportable"
path = "examples/custom_reportable.rs"
[[example]]
name = "jsonl_export"
path = "examples/jsonl_export.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "format_json"
path = "tests/format_json.rs"
[[test]]
name = "format_jsonl"
path = "tests/format_jsonl.rs"
[[test]]
name = "format_markdown"
path = "tests/format_markdown.rs"
[[test]]
name = "format_sarif"
path = "tests/format_sarif.rs"
[[test]]
name = "format_text"
path = "tests/format_text.rs"
[[test]]
name = "integration_pipeline"
path = "tests/integration_pipeline.rs"
[[test]]
name = "serialization"
path = "tests/serialization.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
[dependencies.chrono]
version = "=0.4.44"
features = ["serde"]
[dependencies.secfinding]
version = "=0.3.0"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.149"
[dev-dependencies.tempfile]
version = "=3.27.0"