Chrome tabs & session snss file reading
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove recursive cargo alias that caused error

Cargo aliases cannot recursively call the external command they're
shadowing. Removed the broken 'crit' alias. Users should use
./bench-compare.sh or run cargo-criterion directly instead.

rektide 6a8723ea 5fa1d306

-2
-2
.cargo/config.toml
··· 2 2 # Benchmark aliases for comparing SIMD vs non-SIMD 3 3 bench-tabs = "bench --bench tabs" 4 4 bench-simd = "bench --bench tabs_simd --features simd_read" 5 - # Use cargo-criterion for enhanced reports (requires: cargo install cargo-criterion) 6 - criterion = "criterion bench --bench tabs && criterion bench --bench tabs_simd --features simd_read" 7 5