ritchie46 opened a new issue #695:
URL: https://github.com/apache/arrow-rs/issues/695


   ## Cargo.toml
   
   ```
   [dependencies]
   arrow = {version = "5.2", default-features = false }
   parquet = {version = "5.2", default-features = false }
   ```
   
   ## Output
   
   `cargo check`
   ```
      --> 
/home/ritchie46/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-5.2.0/src/data_type.rs:591:9
       |
   591 |     use arrow::util::bit_util::round_upto_power_of_2;
       |         ^^^^^ use of undeclared crate or module `arrow`
   
   error[E0433]: failed to resolve: use of undeclared crate or module `arrow`
     --> 
/home/ritchie46/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-5.2.0/src/util/test_common/file_util.rs:23:28
      |
   23 |         
PathBuf::from_str(&arrow::util::test_util::parquet_test_data()).unwrap();
      |                            ^^^^^ use of undeclared crate or module 
`arrow`
   
   error[E0425]: cannot find function `round_upto_power_of_2` in this scope
      --> 
/home/ritchie46/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-5.2.0/src/data_type.rs:677:36
       |
   677 |                 let bytes_needed = round_upto_power_of_2(bytes_needed, 
256);
       |                                    ^^^^^^^^^^^^^^^^^^^^^ not found in 
this scope
   
   Some errors have detailed explanations: E0425, E0433.
   For more information about an error, try `rustc --explain E0425`.
   error: could not compile `parquet` due to 3 previous errors
   ```
   
   Is this related to  #690? If not, I really think we should run combinations 
of feature gates in CI, as these bugs are easy to prevent.
   


-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to