The recent change broke my bazel build. Here's the error:
error[E0433]: failed to resolve: use of undeclared type or module `fail_ure`
--> external/raze__actix_http__1_0_1/src/error.rs:968:24
|
968 | impl ResponseError for fail_ure::Error {}
| ^^^^^^^^ use of undeclared type or module `fail_ure`
error: aborting due to previous error
Is there a way to work around it?
You should enable failure feature, then it should work fine.
How do I enable the feature in cargo-raze config?
Try to modify Cargo.toml (I'm not familiar with cargo-raze though).

@sergeysova The failure crate is aliased to fail-ure so we can use the name as a feature flag, That version of cargo-tree musnt support the package="" aliasing. It's possible cargo-raze doesn't either.
I think there is no action that we can take here?
FYI, this was resolved in https://github.com/google/cargo-raze/issues/143
Most helpful comment
@sergeysova The
failurecrate is aliased tofail-ureso we can use the name as a feature flag, That version of cargo-tree musnt support thepackage=""aliasing. It's possible cargo-raze doesn't either.