[package]
edition = "2024"
rust-version = "1.95.0"
name = "threatflux-string-analysis"
version = "0.2.0"
authors = ["ThreatFlux Team"]
build = false
include = [
"/src/**",
"/examples/**",
"/tests/**",
"/docs/**",
"/CHANGELOG.md",
"/CODE_OF_CONDUCT.md",
"/CONTRIBUTING.md",
"/DEVELOPMENT.md",
"/README.md",
"/SECURITY.md",
"/TESTING.md",
"/Cargo.lock",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, configurable string analysis primitives for security tooling"
homepage = "https://github.com/ThreatFlux/threatflux-string-analysis"
documentation = "https://docs.rs/threatflux-string-analysis"
readme = "README.md"
keywords = [
"security",
"string-analysis",
"threat-detection",
"forensics",
"malware",
]
categories = [
"security",
"text-processing",
"algorithms",
]
license = "MIT"
repository = "https://github.com/ThreatFlux/threatflux-string-analysis"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "threatflux_string_analysis"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "custom_patterns"
path = "examples/custom_patterns.rs"
[[example]]
name = "security_log_analysis"
path = "examples/security_log_analysis.rs"
[[test]]
name = "analyzer_patterns"
path = "tests/analyzer_patterns.rs"
[[test]]
name = "documentation_links"
path = "tests/documentation_links.rs"
[[test]]
name = "filter_similarity"
path = "tests/filter_similarity.rs"
[[test]]
name = "serialization"
path = "tests/serialization.rs"
[[test]]
name = "tracker_behavior"
path = "tests/tracker_behavior.rs"
[dependencies.chrono]
version = "0.4"
features = [
"now",
"serde",
"std",
]
default-features = false
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.serde_json]
version = "1.0"
[lints.rust]
unsafe_code = "forbid"