Bump cc 1.1.10 (#186)

* Bump cc from 1.0.95 to 1.1.10

Bumps [cc](https://github.com/rust-lang/cc-rs) from 1.0.95 to 1.1.10.
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/cc-rs/compare/1.0.95...cc-v1.1.10)

---
updated-dependencies:
- dependency-name: cc
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix clippy issue

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Conrado Gouvea 2025-01-23 19:11:03 -03:00 committed by GitHub
parent a9bfcd5da2
commit 38cc608560
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 5 deletions

5
Cargo.lock generated
View File

@ -189,13 +189,12 @@ dependencies = [
[[package]]
name = "cc"
version = "1.0.95"
version = "1.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
checksum = "e9e8aabfac534be767c909e0690571677d49f41bd8465ae876fe043d52ba5292"
dependencies = [
"jobserver",
"libc",
"once_cell",
]
[[package]]

View File

@ -73,7 +73,7 @@ bindgen = ">= 0.64.0"
# These dependencies are shared with a lot of other Zebra dependencies,
# so they are configured to automatically upgrade to match Zebra.
# But we try to use the latest versions here, to catch any bugs in `zcash_script`'s CI.
cc = { version = "1.0.94", features = ["parallel"] }
cc = { version = "1.1.10", features = ["parallel"] }
[dev-dependencies]
# These dependencies are shared with a lot of other Zebra dependencies.

View File

@ -199,5 +199,5 @@ fn language_std(build: &mut cc::Build, std: &str) {
"-std="
};
build.flag(&[flag, std].concat());
build.flag([flag, std].concat());
}