sarutak opened a new issue, #7106:
URL: https://github.com/apache/arrow-datafusion/issues/7106
### Describe the bug
`rust-version` is speciied as 1.64 in Cargo.toml but we can't build with the
version.
```
$ rustc --version
rustc 1.64.0 (a55dd71d5 2022-09-19)
$ cargo --version
cargo 1.64.0 (387270bc7 2022-09-16)
$cargo build --workspace
...
error: package `half v2.3.1` cannot be built because it requires rustc 1.70
or newer, while the currently active rustc version is 1.64.0
```
Actually, `cargo msrv` also sugests 1.70 (I ran `cargo msrv` with Rust 1.65
because we can't install cargo-msrv with Rust 1.64).
```
$ cargo install cargo-msrv
$ cargo msrv
...
Check for toolchain '1.70.0-x86_64-unknown-linux-gnu' succeeded
Finished The MSRV is: 1.70.0
```
Also, according to `cargo msrv`, `1.70` is necessary for `datafusion-cli`
and `benchmark`, and `1.64` is necessary for `datafusion/proto/gen`.
### To Reproduce
_No response_
### Expected behavior
_No response_
### Additional context
_No response_
--
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]