jobserver-rs
jobserver-rs copied to clipboard
I couldn't see a tracking issue or roadmap for a stable 1.0 release. Does one exist? If not, is that a desirable goal, and what might be needed to achieve...
If you do something like: ``` if let Some(client) = unsafe { jobserver::Client::from_env() } { client.configure(&mut cmd); } ``` Where `cmd` is an existing `Command`. By the time you execute...
Trying to bootstrap rustc for x86_64-unknown-linux-gnux32 fails due to mismatching sizes for ```self.thread.as_pthread_t()```: ``` Compiling jobserver v0.1.8 Compiling env_logger v0.4.3 error[E0308]: mismatched types --> /home/glaubitz/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.8/src/lib.rs:628:40 | 628 | libc::pthread_kill(self.thread.as_pthread_t(), libc::SIGUSR1);...
Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.10.1 to 3.12.0. Changelog Sourced from tempfile's changelog. 3.12.0 Add a keep(keep: bool) function to builder that suppresses delete-on-drop behavior (thanks to @RalfJung). Update windows-sys from 0.52...
Bumps [nix](https://github.com/nix-rust/nix) from 0.28.0 to 0.29.0. Changelog Sourced from nix's changelog. [0.29.0] - 2024-05-24 Added Add getregset()/setregset() for Linux/glibc/x86/x86_64/aarch64/riscv64 and getregs()/setregs() for Linux/glibc/aarch64/riscv64 (#2044) Add socket option Ipv6Ttl for apple...
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.153 to 0.2.155. Release notes Sourced from libc's releases. 0.2.155 What's Changed Add SYS_lseek and SYS_mmap for aarch64 Android by @lberrymage in rust-lang/libc#3632 Correct the value of...
As well as using `BorrowedFd` as opposed to `c_int` in more places, this PR fixes two related bugs: - Unix `Client::configure()` wouldn't ensure the file descriptors passed to `Command::configure` remained...
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.153 to 0.2.156. Release notes Sourced from libc's releases. 0.2.156 Added Apple: add F_ALLOCATEPERSIST Apple: add os_sync_wait_on_address and related definitions BSD: generalise IPV6_DONTFRAG to all BSD targets...