[package]
edition = "2021"
rust-version = "1.89"
name = "keyhog-core"
version = "0.5.39"
authors = ["Santh Project <security@santh.dev>"]
build = "build.rs"
exclude = ["detectors/.keyhog-cache.json"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "keyhog-core: shared data model and detector specifications for the KeyHog secret scanner"
homepage = "https://github.com/santhsecurity/keyhog"
documentation = "https://docs.rs/keyhog-core"
readme = "README.md"
keywords = [
"secret-scanner",
"security",
"credentials",
"api-keys",
"git",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/keyhog"
[package.metadata.santh]
status = "alpha"
[lib]
name = "keyhog_core"
path = "src/lib.rs"
[[example]]
name = "core_standalone"
path = "examples/core_standalone.rs"
[[test]]
name = "all_tests"
path = "tests/all_tests.rs"
[[test]]
name = "dedup_decoder_alias"
path = "tests/dedup_decoder_alias.rs"
[[test]]
name = "gaps"
path = "tests/gaps.rs"
[[test]]
name = "perf_algo_complexity"
path = "tests/perf_algo_complexity.rs"
[[test]]
name = "perf_suppression"
path = "tests/perf_suppression.rs"
[[test]]
name = "regression_csv_formula_injection"
path = "tests/regression_csv_formula_injection.rs"
[[test]]
name = "regression_html_report_script_breakout_xss"
path = "tests/regression_html_report_script_breakout_xss.rs"
[[test]]
name = "regression_sarif_information_uri"
path = "tests/regression_sarif_information_uri.rs"
[[test]]
name = "test_toml_compat"
path = "tests/test_toml_compat.rs"
[[test]]
name = "wave9_edge"
path = "tests/wave9_edge.rs"
[[test]]
name = "wave9_proptest"
path = "tests/wave9_proptest.rs"
[dependencies.anyhow]
version = "=1.0.102"
[dependencies.async-trait]
version = "0.1"
[dependencies.blake3]
version = "=1.8.5"
features = ["pure"]
[dependencies.dirs]
version = "6"
[dependencies.hex]
version = "0.4"
[dependencies.indexmap]
version = "2"
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "=1.12.3"
[dependencies.regex-syntax]
version = "0.8"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_with]
version = "3"
[dependencies.sha2]
version = "=0.10.9"
[dependencies.smallvec]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "=1.1.2"
[dependencies.tracing]
version = "0.1"
[dependencies.vyre_libs]
version = "=0.6.1"
features = ["rule"]
package = "vyre-libs"
[dependencies.zeroize]
version = "=1.8.2"
features = ["derive"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["fmt"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"