simdsieve 0.1.1

SIMD-accelerated byte pattern pre-filtering with AVX-512, AVX2, NEON, and scalar fallback
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.85"
name = "simdsieve"
version = "0.1.1"
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_exhaustive"
path = "tests/adversarial_exhaustive.rs"

[[test]]
name = "adversarial_exhaustive_2"
path = "tests/adversarial_exhaustive_2.rs"

[[test]]
name = "adversarial_simd"
path = "tests/adversarial_simd.rs"

[[test]]
name = "adversarial_suite"
path = "tests/adversarial_suite.rs"

[[test]]
name = "backend_parity"
path = "tests/backend_parity.rs"

[[test]]
name = "break_it"
path = "tests/break_it.rs"

[[test]]
name = "concurrency_suite"
path = "tests/concurrency_suite.rs"

[[test]]
name = "forge_million_fuzzer"
path = "tests/forge_million_fuzzer.rs"

[[test]]
name = "forge_tlb_hardware"
path = "tests/forge_tlb_hardware.rs"

[[test]]
name = "hardening"
path = "tests/hardening.rs"

[[test]]
name = "kimi_audit"
path = "tests/kimi_audit.rs"

[[test]]
name = "legendary"
path = "tests/legendary.rs"

[[test]]
name = "legendary_2"
path = "tests/legendary_2.rs"

[[test]]
name = "legendary_jules"
path = "tests/legendary_jules.rs"

[[test]]
name = "legendary_proptest"
path = "tests/legendary_proptest.rs"

[[test]]
name = "mass_simd_samples"
path = "tests/mass_simd_samples.rs"

[[test]]
name = "multi_integration"
path = "tests/multi_integration.rs"

[[test]]
name = "parity_suite"
path = "tests/parity_suite.rs"

[[test]]
name = "regression_suite"
path = "tests/regression_suite.rs"

[[test]]
name = "structural_suite"
path = "tests/structural_suite.rs"

[[test]]
name = "test_avx2_boundary"
path = "tests/test_avx2_boundary.rs"

[[test]]
name = "test_impossible_conditions"
path = "tests/test_impossible_conditions.rs"

[[test]]
name = "test_legendary_adversarial"
path = "tests/test_legendary_adversarial.rs"

[[test]]
name = "test_legendary_concurrency"
path = "tests/test_legendary_concurrency.rs"

[[test]]
name = "test_legendary_fault"
path = "tests/test_legendary_fault.rs"

[[test]]
name = "test_legendary_gap"
path = "tests/test_legendary_gap.rs"

[[test]]
name = "test_legendary_overflow"
path = "tests/test_legendary_overflow.rs"

[[test]]
name = "test_legendary_property"
path = "tests/test_legendary_property.rs"

[[test]]
name = "test_legendary_unit"
path = "tests/test_legendary_unit.rs"

[[bench]]
name = "legendary_bench"
path = "benches/legendary_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"

[lints.clippy]
panic = "deny"
todo = "deny"
unimplemented = "deny"

[lints.clippy.pedantic]
level = "warn"
priority = -1