[package]
edition = "2021"
rust-version = "1.85"
name = "flashsieve"
version = "0.1.1"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"benches/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Storage-level pre-filtering for pattern matching — skip blocks that can't contain matches"
homepage = "https://github.com/santhsecurity/flashsieve"
documentation = "https://docs.rs/flashsieve"
readme = "README.md"
keywords = [
"filter",
"bloom",
"storage",
"pattern-matching",
"indexing",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT"
repository = "https://github.com/santhsecurity/flashsieve"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "flashsieve"
path = "src/lib.rs"
[[test]]
name = "adversarial_bloom"
path = "tests/adversarial_bloom.rs"
[[test]]
name = "adversarial_bloom_correctness"
path = "tests/adversarial_bloom_correctness.rs"
[[test]]
name = "adversarial_bloom_critical"
path = "tests/adversarial_bloom_critical.rs"
[[test]]
name = "adversarial_exact_pairs_boundary"
path = "tests/adversarial_exact_pairs_boundary.rs"
[[test]]
name = "adversarial_exhaustive"
path = "tests/adversarial_exhaustive.rs"
[[test]]
name = "adversarial_fpr_extreme"
path = "tests/adversarial_fpr_extreme.rs"
[[test]]
name = "adversarial_inputs"
path = "tests/adversarial_inputs.rs"
[[test]]
name = "adversarial_suite"
path = "tests/adversarial_suite.rs"
[[test]]
name = "audit_break_it"
path = "tests/audit_break_it.rs"
[[test]]
name = "blocked_bloom"
path = "tests/blocked_bloom.rs"
[[test]]
name = "bloom_accuracy"
path = "tests/bloom_accuracy.rs"
[[test]]
name = "concurrent_suite"
path = "tests/concurrent_suite.rs"
[[test]]
name = "crash_suite"
path = "tests/crash_suite.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "file_bloom_incremental"
path = "tests/file_bloom_incremental.rs"
[[test]]
name = "gap_fpr"
path = "tests/gap_fpr.rs"
[[test]]
name = "incremental"
path = "tests/incremental.rs"
[[test]]
name = "integration_suite"
path = "tests/integration_suite.rs"
[[test]]
name = "internet_scale"
path = "tests/internet_scale.rs"
[[test]]
name = "legendary"
path = "tests/legendary.rs"
[[test]]
name = "legendary_proptest"
path = "tests/legendary_proptest.rs"
[[test]]
name = "oom_test"
path = "tests/oom_test.rs"
[[test]]
name = "persistence_roundtrip"
path = "tests/persistence_roundtrip.rs"
[[test]]
name = "property_suite"
path = "tests/property_suite.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[test]]
name = "regression_suite"
path = "tests/regression_suite.rs"
[[test]]
name = "scale_suite"
path = "tests/scale_suite.rs"
[[test]]
name = "structural_suite"
path = "tests/structural_suite.rs"
[[test]]
name = "test_blocked_bloom"
path = "tests/test_blocked_bloom.rs"
[[test]]
name = "test_legendary_adversarial"
path = "tests/test_legendary_adversarial.rs"
[[test]]
name = "test_legendary_gap"
path = "tests/test_legendary_gap.rs"
[[test]]
name = "test_legendary_property"
path = "tests/test_legendary_property.rs"
[[test]]
name = "test_legendary_unit"
path = "tests/test_legendary_unit.rs"
[[test]]
name = "transport_adversarial"
path = "tests/transport_adversarial.rs"
[[test]]
name = "unit_suite"
path = "tests/unit_suite.rs"
[[bench]]
name = "filter_throughput"
path = "benches/filter_throughput.rs"
harness = false
[[bench]]
name = "legendary_bench"
path = "benches/legendary_bench.rs"
harness = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.6"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3.10"