andygrove opened a new issue #1577: URL: https://github.com/apache/arrow-datafusion/issues/1577
**Describe the bug** I tried running this command from https://github.com/apache/arrow-datafusion/tree/master/benchmarks ```bash cargo run --release --features "simd mimalloc" --bin tpch -- benchmark datafusion --iterations 1 --path /mnt/bigdata/tpch/sf100-24part-parquet --format parquet --query 1 --batch-size 4096 ``` It failed with: ``` $ cargo run --release --features "simd mimalloc" --bin tpch -- benchmark datafusion --iterations 1 --path /mnt/bigdata/tpch/sf100-24part-parquet --format parquet --query 1 --batch-size 4096 Compiling libm v0.1.4 Compiling libmimalloc-sys v0.1.22 Compiling packed_simd_2 v0.3.5 error[E0557]: feature has been removed --> /home/andy/.cargo/registry/src/github.com-1ecc6299db9ec823/packed_simd_2-0.3.5/src/lib.rs:215:5 | 215 | const_generics, | ^^^^^^^^^^^^^^ feature has been removed | = note: removed in favor of `#![feature(adt_const_params)]` and `#![feature(generic_const_exprs)]` ``` It works fine if I do not specify features. **To Reproduce** See above. **Expected behavior** Should not fail to compile. **Additional context** I am using `rustc 1.58.0 (02072b482 2022-01-11)` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
