diff options
| author | The8472 <git@infinite-source.de> | 2021-04-21 22:02:54 +0200 |
|---|---|---|
| committer | The8472 <git@infinite-source.de> | 2021-04-21 22:02:54 +0200 |
| commit | 7f45cdb0901cb48758a663b6c9251970ab6ec9bd (patch) | |
| tree | 291900033015155d2bbcb3fd8c6d6acb12b8ff09 | |
| parent | b849326744a8eec939e592f0ab13bff85cc865d3 (diff) | |
| download | rust-7f45cdb0901cb48758a663b6c9251970ab6ec9bd.tar.gz rust-7f45cdb0901cb48758a663b6c9251970ab6ec9bd.zip | |
bump jobserver dependency
the newest jobserver version should slightly reduce context switches in highly parallel build environments on linux kernels >= 5.6
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | compiler/rustc_codegen_ssa/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8fec4bf128f..740bf7cc9ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1744,9 +1744,9 @@ checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6" [[package]] name = "jobserver" -version = "0.1.21" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" +checksum = "972f5ae5d1cb9c6ae417789196c803205313edde988685da5e3aae0827b9e7fd" dependencies = [ "libc", ] diff --git a/compiler/rustc_codegen_ssa/Cargo.toml b/compiler/rustc_codegen_ssa/Cargo.toml index 7c1aaebb9ab..12f3b52a250 100644 --- a/compiler/rustc_codegen_ssa/Cargo.toml +++ b/compiler/rustc_codegen_ssa/Cargo.toml @@ -13,7 +13,7 @@ cc = "1.0.1" itertools = "0.9" tracing = "0.1" libc = "0.2.50" -jobserver = "0.1.11" +jobserver = "0.1.22" tempfile = "3.1" pathdiff = "0.2.0" |
