You can upgrade a specific *transitive* [[Rust]] dependency to a specific version using the following [[Cargo]] command: ```shell cargo update -p somecrate --precise major.minor.patch ``` This allows you to set a specific (compatible) version of a crate. Helpful for when you're stuck on an older version of `rustc` for some reason.