|
Cargo.toml [package]
name = "rust_testing"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrow2 = "0.14.1"
arrow2_convert = "0.3.0"src/main.rs use arrow2_convert::ArrowField;
#[derive(ArrowField)]
struct Sample {
a: u8,
}
fn main() {}On cargo build gives the following error: What am I missing? |
Answered by
ncpenke
Sep 30, 2022
Replies: 4 comments 5 replies
|
Great question @scimas. Please try with arrow2 0.13: I'll look into why it's not working for arrow2 0.14. |
0 replies
|
I apologize @scimas. I made a mistake when updating the version and there was a mismatch. Please try again with |
4 replies
|
Solved by publishing and upgrading to arrow2-convert 0.3.2 |
0 replies
Answer selected by
ncpenke
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solved by publishing and upgrading to arrow2-convert 0.3.2