From 86c1b9ca22b54c307b50b7c9c7ccf1fcad353fcb Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 9 Mar 2026 20:49:10 +0000
Subject: [PATCH] chore(deps): Bump libc from 0.2.182 to 0.2.183 (#536)
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.182 to 0.2.183.
Release notes
Sourced from libc's
releases.
0.2.183
Added
- ESP-IDF: Add
SOMAXCONN (#4993)
- Linux: Add
name_to_handle_at and
open_by_handle_at (#4988)
- NetBSD: Add
kinfo_file, kinfo_pcb, and
related constants (#4985)
- OpenBSD: Add
kinfo_file and related constants (#4991)
- VxWorks: Add additional structs and defines (#5003)
- Various: Implement
Default for timeval and
timespec (#4976)
Fixed
- Hexagon musl: Enable unstable 64-bit
time_t support and
musl_v1_2_3 (#4992)
- Nintendo Switch: Fix target support (#4982)
- OpenBSD: Wrap an unused field in
Padding (#4997)
- Redox: Change
sigaction.sa_flags to c_int
(#4986)
- Redox: Fix
blkcnt_t type (#4994)
Changelog
Sourced from libc's
changelog.
Added
- ESP-IDF: Add
SOMAXCONN (#4993)
- Linux: Add
name_to_handle_at and
open_by_handle_at (#4988)
- NetBSD: Add
kinfo_file, kinfo_pcb, and
related constants (#4985)
- OpenBSD: Add
kinfo_file and related constants (#4991)
- VxWorks: Add additional structs and defines (#5003)
- Various: Implement
Default for timeval and
timespec (#4976)
Fixed
- Hexagon musl: Enable unstable 64-bit
time_t support and
musl_v1_2_3 (#4992)
- Nintendo Switch: Fix target support (#4982)
- OpenBSD: Wrap an unused field in
Padding (#4997)
- Redox: Change
sigaction.sa_flags to c_int
(#4986)
- Redox: Fix
blkcnt_t type (#4994)
Commits
5660e6f
chore: Release libc 0.2.183
8b439b7
allow unused link_cfg feature in rustc-dep-of-std
e6436dc
Adding structs and defines for vxworks
e9cca04
Linux: add name_to_handle_at and
open_by_handle_at
af8b812
linux: relocate PIDFD definitions to src/new
d0bd7e2
NetBSD: add kinfo_file, kinfo_pcb structures and related constants
17f5cce
build(deps): bump actions/upload-artifact from 6 to 7
62c89e8
OpenBSD: Wrap an unused field in Padding
82cb126
enable musl32_time64 and musl_v1_2_3 for hexagon
e7f9902
redox: fix blkcnt_t type
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 4 ++--
Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 949671d..34ab378 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -68,9 +68,9 @@ dependencies = [
[[package]]
name = "libc"
-version = "0.2.182"
+version = "0.2.183"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
+checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
[[package]]
name = "shlex"
diff --git a/Cargo.toml b/Cargo.toml
index 53fc421..90b483f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,7 @@ resolver = "3"
members = ["examples/*"]
[dependencies]
-libc = "0.2.182"
+libc = "0.2.183"
[build-dependencies]
autotools = { version = "0.2.7", optional = true }