nshare icon indicating copy to clipboard operation
nshare copied to clipboard

Less strict dependencies

Open AzHicham opened this issue 2 years ago • 0 comments

Hello,

Thank you for this library! Would it be possible to set less strict dependencies ? ie have

ndarray = { version = "0.15", default-features = false, optional = true }
nalgebra = { version = "0.30", default-features = false, optional = true }
image = { version = "0.24", default-features = false, optional = true }

instead of

ndarray = { version = "0.15.4", default-features = false, optional = true }
nalgebra = { version = "0.30.1", default-features = false, optional = true }
image = { version = "0.24.0", default-features = false, optional = true }

In order to avoid conflict (especially with onnxruntime 0.16)

Thank you

AzHicham avatar Jul 09 '23 16:07 AzHicham