Introduce a new `analyze_simd` function in main.rs using AVX2 256-bit registers for parallel text scanning, replacing the previous sequential analysis path. Add a stub `uring` module for future async I/O integration. Remove `core_affinity` and `memmap2` crate dependencies from Cargo.toml and Cargo.lock, along with their associated `libc`, `num_cpus`, `hermit-abi`, and `winapi` transitive dependencies. Comment out `mimalloc` and `io-uring` crate references. Uncomment file reading timing instrumentation and add a `bench_rust_only` Makefile target for direct benchmark execution.
10 lines
241 B
TOML
10 lines
241 B
TOML
[build]
|
|
rustflags = [
|
|
"-Ztls-model=initial-exec",
|
|
"-Ctarget-cpu=native"
|
|
]
|
|
|
|
#[unstable]
|
|
#build-std = ["compiler_builtins", "alloc", "std", "panic_abort"] # choose only what you need
|
|
#build-std-features = ["compiler-builtins-mem"]
|