rust-cv / cv

Rust CV mono-repo. Contains pure-Rust dependencies which attempt to encapsulate the capability of OpenCV, OpenMVG, and vSLAM frameworks in a cohesive set of APIs.
792 stars 62 forks source link

Does not compile with rust 1.64 #55

Open SujithChristopher opened 1 year ago

SujithChristopher commented 1 year ago

I just added cv = "0.6.0" in dependency

and tried running "cargo check" or "cargo run" is doesn't compile.

I'm using rust 1.64.

vadixidav commented 1 year ago

I know it is not ideal, but I would recommend using the git repository directly. Try:

cv = { git = "https://github.com/rust-cv/cv.git" }

You can specify a specific commit with rev = "..." in your Cargo.toml as well if you want to avoid updates from upstream.

I will leave this ticket open until I have published a new release to crates.io. Thanks for letting me know that the version on there is broken. I will see if we can cut a release soon.

SujithChristopher commented 1 year ago

Thanks, will use git repo for now.

I appreciate your work @vadixidav , on making an "opencv" alternative, OpenCV is very painful to compile. I have high hopes on this repo.

vadixidav commented 1 year ago

Work on it has been slow for the last year, but hopefully it will pick up soon. This is definitely a continuous effort.