Replies: 2 comments 2 replies
-
noodles 0.48.0 and noodles-util 0.19.{0,1} are pulling in two different versions of noodles-vcf.
cargo does not consider 0.x releases to be semver compatible and tries to include both. In this case, the usages overlap. noodles and noodles-util need to be kept in sync, i.e., use noodles 0.48.0 and noodles-util 0.20.0. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I think this is a general rust question regarding features rather than specific to
noodles
but I am not able to find the solution.I have in my Cargo.toml this:
and later, I have:
Since I need the features on
noodles-util
, I specified it that way.However doing so causes problems. I see:
where rust thinks these are different types (not sure how version 0.35.0 and version 0.36.0 are getting chosen).
Can you help me with this? I think if I can figure how to specify the features of
noodles-util
this will be resolved.thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions