[package]
edition = "2024"
rust-version = "1.88"
name = "simdsieve"
version = "0.1.2"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = false
include = [
"src/**",
"benches/**",
"tests/**",
"fuzz/**",
"README.md",
"CHANGELOG.md",
"LICENSE",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIMD-accelerated byte pattern pre-filtering with AVX-512, AVX2, NEON, and scalar fallback"
homepage = "https://github.com/santhsecurity/Santh"
documentation = "https://docs.rs/simdsieve"
readme = "README.md"
keywords = [
"simd",
"avx2",
"avx512",
"neon",
"pattern-matching",
]
categories = [
"algorithms",
"text-processing",
]
license = "MIT"
repository = "https://github.com/santhsecurity/Santh"
[lib]
name = "simdsieve"
path = "src/lib.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial/mod.rs"
[[test]]
name = "adversarial_adversarial_exhaustive"
path = "tests/adversarial/adversarial_exhaustive.rs"
[[test]]
name = "adversarial_adversarial_exhaustive_2"
path = "tests/adversarial/adversarial_exhaustive_2.rs"
[[test]]
name = "adversarial_adversarial_simd"
path = "tests/adversarial/adversarial_simd.rs"
[[test]]
name = "adversarial_adversarial_suite"
path = "tests/adversarial/adversarial_suite.rs"
[[test]]
name = "adversarial_break_it"
path = "tests/adversarial/break_it.rs"
[[test]]
name = "adversarial_test_depth_adversarial"
path = "tests/adversarial/test_depth_adversarial.rs"
[[test]]
name = "campaign_s_perf_match"
path = "tests/campaign_s_perf_match.rs"
[[test]]
name = "campaign_s_proptest_03"
path = "tests/campaign_s_proptest_03.rs"
[[test]]
name = "campaign_s_proptest_03_ext"
path = "tests/campaign_s_proptest_03_ext.rs"
[[test]]
name = "integration"
path = "tests/integration/mod.rs"
[[test]]
name = "integration_multi_integration"
path = "tests/integration/multi_integration.rs"
[[test]]
name = "property"
path = "tests/property/mod.rs"
[[test]]
name = "property_depth_proptest"
path = "tests/property/depth_proptest.rs"
[[test]]
name = "property_test_depth_property"
path = "tests/property/test_depth_property.rs"
[[test]]
name = "unit"
path = "tests/unit/mod.rs"
[[test]]
name = "unit_backend_parity"
path = "tests/unit/backend_parity.rs"
[[test]]
name = "unit_concurrency_suite"
path = "tests/unit/concurrency_suite.rs"
[[test]]
name = "unit_depth"
path = "tests/unit/depth.rs"
[[test]]
name = "unit_depth_2"
path = "tests/unit/depth_2.rs"
[[test]]
name = "unit_depth_jules"
path = "tests/unit/depth_jules.rs"
[[test]]
name = "unit_forge_million_fuzzer"
path = "tests/unit/forge_million_fuzzer.rs"
[[test]]
name = "unit_forge_tlb_hardware"
path = "tests/unit/forge_tlb_hardware.rs"
[[test]]
name = "unit_hardening"
path = "tests/unit/hardening.rs"
[[test]]
name = "unit_kimi_audit"
path = "tests/unit/kimi_audit.rs"
[[test]]
name = "unit_mass_simd_samples"
path = "tests/unit/mass_simd_samples.rs"
[[test]]
name = "unit_parity_suite"
path = "tests/unit/parity_suite.rs"
[[test]]
name = "unit_regression_suite"
path = "tests/unit/regression_suite.rs"
[[test]]
name = "unit_structural_suite"
path = "tests/unit/structural_suite.rs"
[[test]]
name = "unit_test_avx2_boundary"
path = "tests/unit/test_avx2_boundary.rs"
[[test]]
name = "unit_test_depth_concurrency"
path = "tests/unit/test_depth_concurrency.rs"
[[test]]
name = "unit_test_depth_fault"
path = "tests/unit/test_depth_fault.rs"
[[test]]
name = "unit_test_depth_gap"
path = "tests/unit/test_depth_gap.rs"
[[test]]
name = "unit_test_depth_overflow"
path = "tests/unit/test_depth_overflow.rs"
[[test]]
name = "unit_test_depth_unit"
path = "tests/unit/test_depth_unit.rs"
[[test]]
name = "unit_test_impossible_conditions"
path = "tests/unit/test_impossible_conditions.rs"
[[bench]]
name = "depth_bench"
path = "benches/depth_bench.rs"
harness = false
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.8"