Update jobserver-rs to 0.1.28 · rust-lang/rust@83f3bc4 (original) (raw)

4 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -2090,9 +2090,9 @@ dependencies = [
2090 2090
2091 2091 [[package]]
2092 2092 name = "jobserver"
2093 -version = "0.1.27"
2093 +version = "0.1.28"
2094 2094 source = "registry+https://github.com/rust-lang/crates.io-index"
2095 -checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
2095 +checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
2096 2096 dependencies = [
2097 2097 "libc",
2098 2098 ]
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ ar_archive_writer = "0.1.5"
9 9 bitflags = "2.4.1"
10 10 cc = "1.0.69"
11 11 itertools = "0.11"
12 -jobserver = "0.1.27"
12 +jobserver = "0.1.28"
13 13 pathdiff = "0.2.0"
14 14 regex = "1.4"
15 15 rustc_arena = { path = "../rustc_arena" }
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ either = "1.0"
11 11 elsa = "=1.7.1"
12 12 ena = "0.14.2"
13 13 indexmap = { version = "2.0.0" }
14 -jobserver_crate = { version = "0.1.27", package = "jobserver" }
14 +jobserver_crate = { version = "0.1.28", package = "jobserver" }
15 15 libc = "0.2"
16 16 measureme = "11"
17 17 rustc-hash = "1.1.0"
Original file line number Diff line number Diff line change
@@ -23,7 +23,10 @@ static GLOBAL_CLIENT: LazyLock<Result<Client, String>> = LazyLock::new(| {
23 23
24 24 if matches!(
25 25 error.kind(),
26 -FromEnvErrorKind::NoEnvVar | FromEnvErrorKind::NoJobserver FromEnvErrorKind::Unsupported
26 +FromEnvErrorKind::NoEnvVar
27 + | FromEnvErrorKind::NoJobserver
28 + | FromEnvErrorKind::NegativeFd
29 + | FromEnvErrorKind::Unsupported
27 30 ) {
28 31 return Ok(default_client());
29 32 }