lax v0.18.0 fails to build together with openblas-src v0.10.16 because in this new openblas-src version, new feature flags rustls and native-tls have been added. These flags are passed to openblas-build, which requires one of the two flags to be present.
I depend on ndarray-linalg = { version = "0.18", default-features = false, optional = true } on the pm-remez crate and currently I have to add openblas-src = { version = "0.10.16", features = ["rustls"] } to pm-remez's Cargo.toml to work around build failures.
lax v0.18.0 fails to build together with openblas-src v0.10.16 because in this new openblas-src version, new feature flags
rustlsandnative-tlshave been added. These flags are passed to openblas-build, which requires one of the two flags to be present.I depend on
ndarray-linalg = { version = "0.18", default-features = false, optional = true }on the pm-remez crate and currently I have to addopenblas-src = { version = "0.10.16", features = ["rustls"] }to pm-remez's Cargo.toml to work around build failures.