Hello,
I am using the ndarray crate in my application which needs the latest version 0.14.0
. However I am also using ndarray-csv
which seems to want to depend on ndarray=0.13.1
(even though it says ^0.13.1
, which I took the caret to mean that it could go to 0.14.0
).
In any case my application is now throwing all kinds of errors, sayinig that multiple ndarray
versions are likely installed, which is clearly the case. The methods from ndarray-csv
are returning a different type than the rest of the application wants in order to use 0.14.0
traits.
How can I resolve this? Can I coerce the ndarray-csv
Array type int a v14 array somehow, or is there another way to do this?
Thanks so much!