alamb opened a new issue #833:
URL: https://github.com/apache/arrow-rs/issues/833
**Describe the bug**
I could not publish the 6.0 version of parquet_derive as part of the 6.0.0
release release.
**To Reproduce**
```
Run `cargo publish` from the parquet_derive 6.0 source:
(arrow_dev)
alamb@ip-172-16-224-193:~/Downloads/apache-arrow-rs-6.0.0/parquet_derive$ cargo
publish
```
Results in this error:
```
Compiling arrow v6.0.0
error[E0432]: unresolved import `arrow::ipc`
-->
/Users/alamb/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-6.0.0/src/arrow/schema.rs:30:12
|
30 | use arrow::ipc::writer;
| ^^^ could not find `ipc` in `arrow`
error[E0433]: failed to resolve: could not find `ipc` in `arrow`
-->
/Users/alamb/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-6.0.0/src/arrow/schema.rs:189:26
|
189 | match arrow::ipc::root_as_message(slice) {
| ^^^ could not find `ipc` in `arrow`
error[E0433]: failed to resolve: could not find `ipc` in `arrow`
-->
/Users/alamb/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-6.0.0/src/arrow/schema.rs:192:33
|
192 | .map(arrow::ipc::convert::fb_to_schema)
| ^^^ could not find `ipc` in `arrow`
error[E0433]: failed to resolve: could not find `ipc` in `arrow`
-->
/Users/alamb/.cargo/registry/src/github.com-1ecc6299db9ec823/parquet-6.0.0/src/arrow/schema.rs:218:27
|
218 | let data_gen = arrow::ipc::writer::IpcDataGenerator::default();
| ^^^ could not find `ipc` in `arrow`
Some errors have detailed explanations: E0432, E0433.
For more information about an error, try `rustc --explain E0432`.
error: failed to verify package tarball
Caused by:
could not compile `parquet` due to 4 previous errors
```
**Expected behavior**
Publishing should have happened successfully
**Additional context**
--
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]