ebpfsieve 0.1.0

Byte-frequency prefilter for read-heavy scanning pipelines with optional eBPF offload
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 = "2021"
rust-version = "1.85"
name = "ebpfsieve"
version = "0.1.0"
authors = ["Corum Collective LLC <contact@santh.io>"]
build = "build.rs"
include = [
    "src/**",
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "build.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Byte-frequency prefilter for read-heavy scanning pipelines with optional eBPF offload"
homepage = "https://github.com/santhsecurity/ebpfsieve"
documentation = "https://docs.rs/ebpfsieve"
readme = "README.md"
keywords = [
    "ebpf",
    "sieve",
    "performance",
    "filtering",
    "prefilter",
]
categories = [
    "network-programming",
    "os",
]
license = "MIT"
repository = "https://github.com/santhsecurity/ebpfsieve"

[features]
default = []
kernel-bpf = ["dep:aya"]
serde = [
    "dep:serde",
    "dep:toml",
]
socket-bpf = ["dep:ebpfkit"]

[lib]
name = "ebpfsieve"
path = "src/lib.rs"

[[bin]]
name = "poc"
path = "src/bin/poc.rs"

[[bin]]
name = "poc2"
path = "src/bin/poc2.rs"

[dependencies.aya]
version = "0.13"
optional = true

[dependencies.ebpfkit]
version = "0.1"
optional = true

[dependencies.libc]
version = "0.2"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.toml]
version = "0.8"
optional = true

[dev-dependencies.proptest]
version = "1.0"

[dev-dependencies.rayon]
version = "1.5"

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

[dev-dependencies.tempfile]
version = "3.2"

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

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