Replies: 1 comment
-
You've run into a classic dependency conflict. One part of your project (grpc-api-types) strictly requires axum version 0.8.3, but another dependency pulled in a newer version (0.8.4), causing the build to fail. Here’s how to fix it by forcing your project to use the correct version. The Permanent Fix Just add this to the end of your Cargo.toml: Ini, TOML [patch.crates-io] The Quick Fix Bash cargo update -p axum --precise 0.8.3 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone, I’m trying to implement issue
#9089
and I’m running into a build error when compiling the Rust binaries for running tests.Here’s the error snippet:
Command i ran:
Environment details:
Has anyone faced this issue before or know how to resolve the version mismatch with
axum
?Beta Was this translation helpful? Give feedback.
All reactions