Skip to content

Commit 43e40e3

Browse files
authored
chore(deps): update rust crate libc to 0.2.168 (#1966)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [libc](https://redirect.github.com/rust-lang/libc) | workspace.dependencies | patch | `0.2.167` -> `0.2.168` | --- ### Release Notes <details> <summary>rust-lang/libc (libc)</summary> ### [`v0.2.168`](https://redirect.github.com/rust-lang/libc/releases/tag/0.2.168) [Compare Source](https://redirect.github.com/rust-lang/libc/compare/0.2.167...0.2.168) ##### Added - Linux: Add new process flags ([#&#8203;4174](https://redirect.github.com/rust-lang/libc/pull/4174)) - Linux: Make `IFA_*` constants available on all Linux targets [#&#8203;4185](https://redirect.github.com/rust-lang/libc/pull/4185) - Linux: add `MAP_DROPPABLE` [#&#8203;4173](https://redirect.github.com/rust-lang/libc/pull/4173) - Solaris, Illumos: add `SIGRTMIN` and `SIGRTMAX` [#&#8203;4171](https://redirect.github.com/rust-lang/libc/pull/4171) - Unix, Linux: adding POSIX `memccpy` and `mempcpy` GNU extension \[https://github.com/rust-lang/libc/pull/4186](https://redirect.github.com/rust-lang/libc/pull/4186)6. ##### Deprecated - FreeBSD: Deprecate the CAP_UNUSED\* and CAP_ALL\* constants ([#&#8203;4183](https://redirect.github.com/rust-lang/libc/pull/4183)) ##### Fixed - Make the `Debug` implementation for unions opaque ([#&#8203;4176](https://redirect.github.com/rust-lang/libc/pull/4176)) ##### Other - Allow the `unpredictable_function_pointer_comparisons` lint where needed [#&#8203;4177](https://redirect.github.com/rust-lang/libc/pull/4177) - CI: Upload artifacts created by libc-test [#&#8203;4180](https://redirect.github.com/rust-lang/libc/pull/4180) - CI: Use workflow commands to group output by target [#&#8203;4179](https://redirect.github.com/rust-lang/libc/pull/4179) - CI: add caching [#&#8203;4183](https://redirect.github.com/rust-lang/libc/pull/4183) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 8pm,before 6am" in timezone America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone America/Los_Angeles. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41OC4wIiwidXBkYXRlZEluVmVyIjoiMzkuNTguMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
1 parent dd20c0f commit 43e40e3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ indoc = "2.0.5"
7070
insta = { version = "1.41.1", default-features = false }
7171
is_ci = "1.2.0"
7272
itertools = "0.13.0"
73-
libc = "0.2.167"
73+
libc = "0.2.168"
7474
log = "0.4.22"
7575
maplit = "1.0.2"
7676
miette = "7.4.0"

workspace-hack/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,28 +48,28 @@ syn = { version = "2.0.90", features = ["extra-traits", "full", "visit", "visit-
4848
futures-channel = { version = "0.3.31", features = ["sink"] }
4949
futures-core = { version = "0.3.31" }
5050
futures-sink = { version = "0.3.31", default-features = false, features = ["std"] }
51-
libc = { version = "0.2.167", features = ["extra_traits"] }
51+
libc = { version = "0.2.168", features = ["extra_traits"] }
5252
linux-raw-sys = { version = "0.4.14", default-features = false, features = ["elf", "errno", "general", "ioctl", "no_std", "std"] }
5353
mio = { version = "1.0.2", features = ["net", "os-ext"] }
5454
rustix = { version = "0.38.37", features = ["fs", "stdio", "termios"] }
5555
smallvec = { version = "1.13.2", default-features = false, features = ["const_new"] }
5656
tokio = { version = "1.42.0", default-features = false, features = ["net"] }
5757

5858
[target.x86_64-unknown-linux-gnu.build-dependencies]
59-
libc = { version = "0.2.167", features = ["extra_traits"] }
59+
libc = { version = "0.2.168", features = ["extra_traits"] }
6060

6161
[target.x86_64-apple-darwin.dependencies]
6262
futures-channel = { version = "0.3.31", features = ["sink"] }
6363
futures-core = { version = "0.3.31" }
6464
futures-sink = { version = "0.3.31", default-features = false, features = ["std"] }
65-
libc = { version = "0.2.167", features = ["extra_traits"] }
65+
libc = { version = "0.2.168", features = ["extra_traits"] }
6666
mio = { version = "1.0.2", features = ["net", "os-ext"] }
6767
rustix = { version = "0.38.37", features = ["fs", "stdio", "termios"] }
6868
smallvec = { version = "1.13.2", default-features = false, features = ["const_new"] }
6969
tokio = { version = "1.42.0", default-features = false, features = ["net"] }
7070

7171
[target.x86_64-apple-darwin.build-dependencies]
72-
libc = { version = "0.2.167", features = ["extra_traits"] }
72+
libc = { version = "0.2.168", features = ["extra_traits"] }
7373

7474
[target.x86_64-pc-windows-msvc.dependencies]
7575
futures-channel = { version = "0.3.31", features = ["sink"] }

0 commit comments

Comments
 (0)