Compilation error in [email protected] #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:
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
|
Thanks for reporting! I'm having a look. |
Beta Was this translation helpful? Give feedback.
-
|
@duarten I can't reproduce the issue for either building [email protected] in context of the vortex repo workspace, or when adding Can you provide a minimal cargo project with which I can repro the issue? |
Beta Was this translation helpful? Give feedback.
-
|
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() {} |
Beta Was this translation helpful? Give feedback.
-
|
Fixed by: #5696 |
Beta Was this translation helpful? Give feedback.
Fixed by: #5696