fastgrep 0.1.2

Fast parallel grep with SIMD-accelerated search and trigram indexing
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.92"
name = "fastgrep"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast parallel grep with SIMD-accelerated search and trigram indexing"
readme = "README.md"
keywords = [
    "grep",
    "search",
    "parallel",
    "simd",
    "cli",
]
categories = [
    "command-line-utilities",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/awnion/fastgrep"

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

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

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

[[bench]]
name = "grep_bench"
path = "benches/grep_bench.rs"
harness = false

[dependencies.bitcode]
version = "0.6"
features = ["serde"]

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
]

[dependencies.dirs]
version = "6"

[dependencies.itoa]
version = "1"

[dependencies.kanal]
version = "0.1"

[dependencies.memchr]
version = "2"

[dependencies.memmap2]
version = "0.9"

[dependencies.regex]
version = "1"

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

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

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

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

[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true