After I cloned this project, I encountered the following error when I executed the cargo build --release command to compile:
error: package bumpalo v3.16.0 cannot be built because it requires rustc 1.73.0 or newer, while the currently active rustc version is 1.70.0
Either upgrade to rustc 1.73.0 or newer, or use
cargo update -p bumpalo@3.16.0 --precise ver
where ver is the latest version of bumpalo supporting rustc 1.70.0
How do I solve this problem?
After I cloned this project, I encountered the following error when I executed the cargo build --release command to compile:
error: package
bumpalo v3.16.0cannot be built because it requires rustc 1.73.0 or newer, while the currently active rustc version is 1.70.0Either upgrade to rustc 1.73.0 or newer, or use
cargo update -p bumpalo@3.16.0 --precise ver
where
veris the latest version ofbumpalosupporting rustc 1.70.0How do I solve this problem?