threatflux-string-analysis 0.2.2

Deterministic, configurable string analysis primitives for security tooling
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.95.0"
name = "threatflux-string-analysis"
version = "0.2.2"
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.45"
features = [
    "now",
    "serde",
    "std",
]
default-features = false

[dependencies.regex]
version = "1.13.1"

[dependencies.serde]
version = "1.0.229"
features = ["derive"]

[dependencies.thiserror]
version = "2.0.20"

[dev-dependencies.serde_json]
version = "1.0.151"

[lints.rust]
unsafe_code = "forbid"