Patch | Description | Author | Forwarded | Bugs | Origin | Last update |
---|---|---|---|---|---|---|
suseconds_t-workaround.patch | workaround glibc posix violation with regards to suseconds_t According to posix tv_usec has type suseconds_t, however glibc with time64 violates this defining tv_usec as time_t (a 64-bit type) while defining suseconds_t as a 32-bit type. Most C programs don't care about this difference because C allows implicit conversion between different sized integers but rust does not. This patch works around the issue by allowing the compiler to infer the type to convert to rather than hardcoding suseconds_t. https://sourceware.org/bugzilla/show_bug.cgi?id=31510 |
Peter Michael Green <plugwash@debian.org> | no | |||
nix-0.29.patch | This patch is based on the upstream commit described below, adapted for use in the Debian package by Peter Michael Green. commit 1c5b27b054c44a0539577ac7017fdfdfb3729b42 Update nix requirement from 0.27.1 to 0.28.0 (#41) * Update nix requirement from 0.27.1 to 0.28.0 Updates the requirements on [nix](https://github.com/nix-rust/nix) to permit the latest version. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.27.1...v0.28.0) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix: Compilation error from nix upgrade `nix::sys::socket::listen` now takes a backlog argument instead of an `i32`. In the case that `SOMAXCONN` is less than 128, we use that value. Signed-off-by: Jalil David Salamé Messina <jalil.salame@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jalil David Salamé Messina <jalil.salame@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jalil David Salamé Messina <jalil.salame@gmail.com> =================================================================== |
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | no | 2024-02-28 |