-
Notifications
You must be signed in to change notification settings - Fork 524
Description
I open a new project and use actix-web v4.3.1 in dependencies, and Cargo.lock set 1.0.80 version cause my project build fail, this is Cargo.lock's content
[[package]]
name = "cc"
version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51f1226cd9da55587234753d1245dd5b132343ea240f26b6a9003d68706141ba"
dependencies = [
"jobserver",
"libc",
]
and my another project is build successfully but it use 1.0.79, this is content
[[package]]
name = "cc"
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
dependencies = [
"jobserver",
]
attach file is error message and my build toolchain, I use Clion 2023.2 + MinGW
Activity
NobodyXu commentedon Aug 2, 2023
error message:
NobodyXu commentedon Aug 2, 2023
I will submit a fix for this.
PrintThread
: Read stderr as bytes instead of str #842NobodyXu commentedon Aug 2, 2023
@cowbear6598 I've opened #842 for this, can you please have a try to see if it fixed the problem for you?
Originalimoc commentedon Aug 2, 2023
thanks for the 1.0.79 checksum haha😅(add: anyway to get whatever version checksum?)
cowbear6598 commentedon Aug 2, 2023
@NobodyXu 1.0.81 fixed, new project and my old project are working good.
cc
>= 1.0.80 (workaround in crate version 0.84.4) twistedfall/opencv-rust#480bazhenov commentedon Aug 3, 2023
Seems like very similar (or at least related) problem is still affecting opencv build: twistedfall/opencv-rust#480. 1.0.79 working, 80, 81 doesn't.