mirror of
https://github.com/sigp/lighthouse.git
synced 2026-07-02 20:34:27 +00:00
Bump jobserver and fix non-portable builds (#5641)
* Bump jobserver and fix non-portable builds
This commit is contained in:
5
Cargo.lock
generated
5
Cargo.lock
generated
@@ -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",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user