Bump jobserver and fix non-portable builds (#5641)

* Bump jobserver and fix non-portable builds
This commit is contained in:
Michael Sproul
2024-04-24 16:02:42 +10:00
committed by GitHub
parent c4a2bcb9c7
commit 1eaaa4a8bd
2 changed files with 5 additions and 4 deletions

5
Cargo.lock generated
View File

@@ -1133,7 +1133,6 @@ dependencies = [
"glob", "glob",
"hex", "hex",
"libc", "libc",
"serde",
] ]
[[package]] [[package]]
@@ -4155,9 +4154,9 @@ dependencies = [
[[package]] [[package]]
name = "jobserver" name = "jobserver"
version = "0.1.30" version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "685a7d121ee3f65ae4fddd72b25a04bb36b6af81bc0828f7d5434c0fe60fa3a2" checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
dependencies = [ dependencies = [
"libc", "libc",
] ]

View File

@@ -102,7 +102,9 @@ bincode = "1"
bitvec = "1" bitvec = "1"
byteorder = "1" byteorder = "1"
bytes = "1" bytes = "1"
c-kzg = "1" # Turn off c-kzg's default features which include `blst/portable`. We can turn on blst's portable
# feature ourselves when desired.
c-kzg = { version = "1", default-features = false }
clap = "2" clap = "2"
compare_fields_derive = { path = "common/compare_fields_derive" } compare_fields_derive = { path = "common/compare_fields_derive" }
criterion = "0.3" criterion = "0.3"