From efd81420b680eb4cc204a8f0778cd3fe5cedf725 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Fri, 5 Aug 2022 10:14:41 +0100 Subject: [PATCH] Misc cleanup --- arrow/README.md | 2 +- parquet/src/util/bit_pack.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/arrow/README.md b/arrow/README.md index 6ff42110ef3..98040be60ef 100644 --- a/arrow/README.md +++ b/arrow/README.md @@ -117,7 +117,7 @@ it relies heavily on LLVM auto-vectorisation to achieve this. Unfortunately the particularly for x86_64, favour portability over performance, and LLVM will consequently avoid using more recent instructions that would result in errors on older CPUs. -To address this it is recommended that you specify the override the LLVM defaults either +To address this it is recommended that you override the LLVM defaults either by setting the `RUSTFLAGS` environment variable, or by setting `rustflags` in your [Cargo configuration](https://doc.rust-lang.org/cargo/reference/config.html) diff --git a/parquet/src/util/bit_pack.rs b/parquet/src/util/bit_pack.rs index b268aa56763..8cea20de253 100644 --- a/parquet/src/util/bit_pack.rs +++ b/parquet/src/util/bit_pack.rs @@ -97,7 +97,6 @@ unpack!(unpack64, u64, 8, 64); #[cfg(test)] mod tests { use super::*; - use rand::{thread_rng, Rng}; #[test] fn test_basic() {