Compilation error in vortex-array@0.56.0 #5671
Issue DescriptionWith Rust 1.89.0 and above: Expected BehaviorCompilation to succeed. Actual BehaviorCompilation fails. Reproduction StepsTry to compile OS Version InformationmacOS 15 I acknowledge that:
|
Answered by
0ax1
Dec 11, 2025
Replies: 4 comments 1 reply
|
Thanks for reporting! I'm having a look. |
0 replies
|
@duarten I can't reproduce the issue for either building vortex-array@0.56.0 in context of the vortex repo workspace, or when adding Can you provide a minimal cargo project with which I can repro the issue? |
0 replies
|
I think you need to add a dependency that is also providing a conflicting impl for Cargo.toml: [package]
name = "vortex-repro"
version = "0.1.0"
edition = "2024"
publish = false
[dependencies]
log = { version = "0.4.28", features = [ "kv_unstable_serde" ] }
vortex = "0.56.0"src/main.rs: fn main() {} |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed by: #5696