Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the cargo-dependencies group with 20 updates #145

Merged
merged 1 commit into from
Jan 15, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 15, 2024

Bumps the cargo-dependencies group with 20 updates:

Package From To
clap 4.4.11 4.4.16
libc 0.2.151 0.2.152
memmap2 0.5.10 0.9.0
serde_json 1.0.108 1.0.111
ahash 0.8.6 0.8.7
anyhow 1.0.76 1.0.79
cargo-platform 0.1.5 0.1.6
cpufeatures 0.2.11 0.2.12
deranged 0.3.10 0.3.11
futures-channel 0.3.29 0.3.30
getrandom 0.2.11 0.2.12
h2 0.3.22 0.3.23
histogram 0.8.3 0.8.4
memchr 2.6.4 2.7.1
rustix 0.38.28 0.38.30
semver 1.0.20 1.0.21
smallvec 1.11.2 1.12.0
tempfile 3.8.1 3.9.0
thiserror 1.0.51 1.0.56
winnow 0.5.30 0.5.34

Updates clap from 4.4.11 to 4.4.16

Release notes

Sourced from clap's releases.

v4.4.16

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

v4.4.15

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

v4.4.14

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

v4.4.13

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

v4.4.12

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed
Changelog

Sourced from clap's changelog.

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed
Commits

Updates libc from 0.2.151 to 0.2.152

Release notes

Sourced from libc's releases.

0.2.152

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.151...0.2.152

Commits
  • 3d17519 Merge pull request #3522 from JohnTitor/libc-0.2.152
  • 0f5d2c1 Prepare release for v0.2.152
  • ee500ca Merge pull request #3521 from rust-lang/main
  • 72093f3 Auto merge of #3510 - JohnTitor:prepare-libc-0.3, r=JohnTitor
  • e5612b9 Auto merge of #3520 - devnexen:fuchsia_upd, r=JohnTitor
  • 44ba265 fuchsia adding pthread_set/getname_np
  • 2f93bfb Auto merge of #3519 - JohnTitor:tweak-libc-0.2-ci, r=JohnTitor
  • 11f7c7b Auto merge of #3518 - asomers:more-sigsuspend, r=JohnTitor
  • 0b9596b Tweak libc-0.2 CI
  • 5594447 Auto merge of #3517 - shuoer86:main, r=JohnTitor
  • Additional commits viewable in compare view

Updates memmap2 from 0.5.10 to 0.9.0

Changelog

Sourced from memmap2's changelog.

[0.9.0] - 2023-10-03

Changed

  • The Advice struct was split into two enums: Advice and UncheckedAdvice. Advice can be passed to safe advise and advise_range methods. And UncheckedAdvice can be passed to unsafe unchecked_advise and unchecked_advise_range methods. @​adamreichold

[0.8.0] - 2023-09-25

Changed

Fixed

  • Some of the Advise variants were unsound and now require unsafe to be constructed. @​adamreichold

[0.7.1] - 2023-06-24

Fixed

  • Mapping beyond 4GB offset on 32 bit glibc. Linux-only. @​lvella

[0.7.0] - 2023-06-08

Added

Changed

  • libc crate >= 0.2.143 is required now.

[0.6.2] - 2023-05-24

Fixed

[0.6.1] - 2023-05-10

Added

  • Add MmapOptions::map_raw_read_only to avoid intermediate invalid Mmap instances. @​adamreichold

[0.6.0] - 2023-05-09

Changed

  • lock() and unlock methods require &self and not &mut self now. @​timvisee
Commits
  • f16835d Version bump.
  • 6a6a3ea Separate safe and unsafe madvice calls.
  • 2cf8233 Version bump.
  • c4b497e Change madvise API to differentiate between safe and unsafe advice options.
  • 53d6e4c A few tiny clippy-inspired nits.
  • 4ca2774 Version bump.
  • 32fe80f Use mmap64 instead of plain mmap when possible.
  • 04178aa Version bump.
  • 6579655 Add MADV_POPULATE_{READ,WRITE}.
  • b098f9e Refactor pointer handling within unix.rs into helper methods.
  • Additional commits viewable in compare view

Updates serde_json from 1.0.108 to 1.0.111

Release notes

Sourced from serde_json's releases.

v1.0.111

  • Improve floating point parsing performance on loongarch64 (#1100, thanks @​heiher)

v1.0.110

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v1.0.109

  • Documentation improvements
Commits

Updates ahash from 0.8.6 to 0.8.7

Commits

Updates anyhow from 1.0.76 to 1.0.79

Release notes

Sourced from anyhow's releases.

1.0.79

  • Work around improperly cached build script result by sccache (#340)

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)

1.0.77

Commits
  • 71ab53d Release 1.0.79
  • 60705a5 Merge pull request #340 from dtolnay/depinfo
  • 17e252b Include env-dep:RUSTC_BOOTSTRAP in dep-info for sccache
  • 04774c0 Merge pull request #338 from dtolnay/nightlyci
  • 1fd290c Make CI verify that error_generic_member_access works in latest nightly
  • ee41470 RUSTC must be set by Cargo for build script
  • 38c79ef Release 1.0.78
  • ded2295 Merge pull request #337 from dtolnay/bootstrap
  • ae45b67 Do not rebuild on RUSTC_BOOTSTRAP changes on nightly compiler
  • 2d32366 Update crate name used for build script probe
  • Additional commits viewable in compare view

Updates cargo-platform from 0.1.5 to 0.1.6

Commits

Updates cpufeatures from 0.2.11 to 0.2.12

Commits

Updates deranged from 0.3.10 to 0.3.11

Commits

Updates futures-channel from 0.3.29 to 0.3.30

Release notes

Sourced from futures-channel's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures-channel's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view

Updates getrandom from 0.2.11 to 0.2.12

Changelog

Sourced from getrandom's changelog.

[0.2.12] - 2024-01-09

Fixed

  • Custom backend for targets without atomics #385

Changed

  • Improve robustness of the Hermit backend and sys_fill_exact #386
  • Raise minimum supported Apple OS versions to macOS 10.12 and iOS 10 #388

Added

  • Document platform support policy #387

#385: rust-random/getrandom#385 #386: rust-random/getrandom#386 #387: rust-random/getrandom#387 #388: rust-random/getrandom#388

Commits

Updates h2 from 0.3.22 to 0.3.23

Release notes

Sourced from h2's releases.

v0.3.23

What's Changed

Changelog

Sourced from h2's changelog.

0.3.23 (January 10, 2024)

  • Backport fix from 0.4.1 for stream capacity assignment.
Commits

Updates histogram from 0.8.3 to 0.8.4

Commits

Updates memchr from 2.6.4 to 2.7.1

Commits
  • 31c1e79 2.7.1
  • d9ac66d api: impl Clone for FindRevIter
  • 8957028 benchmarks/engines/rust-memchr: complete bump to 2.7.0
  • 5caaf3e benchmarks/engines/rust-memchr: bump to 2.7.0
  • b93d817 2.7.0
  • 8b62928 cargo: remove unused exclusions
  • a22b2df ci: update to wasmtime 15
  • bce1940 benchmarks/engines/bytecount: revert to 0.6.4
  • 2f5d8c4 benchmarks: fix wasmtime command
  • e77f0bf arch: simplify and improve is_equal_raw
  • Additional commits viewable in compare view

Updates rustix from 0.38.28 to 0.38.30

Commits

Updates semver from 1.0.20 to 1.0.21

Release notes

Sourced from semver's releases.

1.0.21

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
Commits

Updates smallvec from 1.11.2 to 1.12.0

Release notes

Sourced from smallvec's releases.

v1.12.0

What's Changed

New Contributors

Full Changelog: servo/rust-smallvec@v1.11.2...v1.12.0

Commits

Updates tempfile from 3.8.1 to 3.9.0

Changelog

Sourced from tempfile's changelog.

3.9.0

  • Updates windows-sys to 0.52
  • Updates minimum rustix version to 0.38.25
Commits

Updates thiserror from 1.0.51 to 1.0.56

Release notes

Sourced from thiserror's releases.

1.0.56

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

1.0.55

  • Work around improperly cached build script result by sccache – second attempt (#280)

1.0.54

  • Work around improperly cached build script result by sccache – first attempt (#279)

1.0.53

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#270)

1.0.52

  • Fix interaction with RUSTC_BOOTSTRAP (#269)
Commits
  • 77d0af4 Release 1.0.56
  • d4caabd Pull in proc-macro2 sccache fix
  • 6089273 Release 1.0.55
  • 322a2ae Merge pull request #280 from dtolnay/depinfo
  • fd7d7a5 Emit dep-info for probe.rs in case sccache needs it
  • 447c328 Release 1.0.54
  • 4619db8 Merge pull request #279 from dtolnay/depinfo
  • 7b53bff Make env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-info
  • e0500ad Merge pull request #277 from dtolnay/nightlyci
  • 48cea47 Make CI verify that error_generic_member_access works in latest nightly
  • Additional commits viewable in compare view

Updates winnow from 0.5.30 to 0.5.34

Changelog

Sourced from winnow's changelog.

[0.5.34] - 2024-01-10

Fixes

  • Don't require Statefuls State to be clone (a leftover from pre &mut input)

[0.5.33] - 2024-01-06

Features

  • Support char with tag parser which is faster than using one_of

[0.5.32] - 2024-01-03

Fixes

  • Parse +/- inf/nan with ascii::float

[0.5.31] - 2023-12-27

Performance

  • Help the optimizer trim unused instructions in any when parsing a complete buffer
Commits

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 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo-dependencies group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.11` | `4.4.16` |
| [libc](https://github.com/rust-lang/libc) | `0.2.151` | `0.2.152` |
| [memmap2](https://github.com/RazrFalcon/memmap2-rs) | `0.5.10` | `0.9.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.108` | `1.0.111` |
| [ahash](https://github.com/tkaitchuck/ahash) | `0.8.6` | `0.8.7` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.76` | `1.0.79` |
| [cargo-platform](https://github.com/rust-lang/cargo) | `0.1.5` | `0.1.6` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.11` | `0.2.12` |
| [deranged](https://github.com/jhpratt/deranged) | `0.3.10` | `0.3.11` |
| [futures-channel](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.11` | `0.2.12` |
| [h2](https://github.com/hyperium/h2) | `0.3.22` | `0.3.23` |
| [histogram](https://github.com/pelikan-io/rustcommon) | `0.8.3` | `0.8.4` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.6.4` | `2.7.1` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.28` | `0.38.30` |
| [semver](https://github.com/dtolnay/semver) | `1.0.20` | `1.0.21` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.11.2` | `1.12.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.8.1` | `3.9.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.51` | `1.0.56` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.30` | `0.5.34` |


Updates `clap` from 4.4.11 to 4.4.16
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.11...v4.4.16)

Updates `libc` from 0.2.151 to 0.2.152
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.151...0.2.152)

Updates `memmap2` from 0.5.10 to 0.9.0
- [Changelog](https://github.com/RazrFalcon/memmap2-rs/blob/master/CHANGELOG.md)
- [Commits](RazrFalcon/memmap2-rs@v0.5.10...v0.9.0)

Updates `serde_json` from 1.0.108 to 1.0.111
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.108...v1.0.111)

Updates `ahash` from 0.8.6 to 0.8.7
- [Release notes](https://github.com/tkaitchuck/ahash/releases)
- [Commits](https://github.com/tkaitchuck/ahash/commits)

Updates `anyhow` from 1.0.76 to 1.0.79
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.76...1.0.79)

Updates `cargo-platform` from 0.1.5 to 0.1.6
- [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/cargo/commits)

Updates `cpufeatures` from 0.2.11 to 0.2.12
- [Commits](RustCrypto/utils@cpufeatures-v0.2.11...cpufeatures-v0.2.12)

Updates `deranged` from 0.3.10 to 0.3.11
- [Commits](https://github.com/jhpratt/deranged/commits/v0.3.11)

Updates `futures-channel` from 0.3.29 to 0.3.30
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.29...0.3.30)

Updates `getrandom` from 0.2.11 to 0.2.12
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.11...v0.2.12)

Updates `h2` from 0.3.22 to 0.3.23
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/v0.3.23/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.22...v0.3.23)

Updates `histogram` from 0.8.3 to 0.8.4
- [Commits](https://github.com/pelikan-io/rustcommon/commits)

Updates `memchr` from 2.6.4 to 2.7.1
- [Commits](BurntSushi/memchr@2.6.4...2.7.1)

Updates `rustix` from 0.38.28 to 0.38.30
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.38.28...v0.38.30)

Updates `semver` from 1.0.20 to 1.0.21
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.20...1.0.21)

Updates `smallvec` from 1.11.2 to 1.12.0
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.11.2...v1.12.0)

Updates `tempfile` from 3.8.1 to 3.9.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.8.1...v3.9.0)

Updates `thiserror` from 1.0.51 to 1.0.56
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.51...1.0.56)

Updates `winnow` from 0.5.30 to 0.5.34
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.5.30...v0.5.34)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: memmap2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: ahash
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: anyhow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: cargo-platform
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: deranged
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: futures-channel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: getrandom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: h2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: histogram
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: memchr
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: semver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: smallvec
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tempfile
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 15, 2024
@brayniac brayniac merged commit b741de0 into main Jan 15, 2024
29 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/cargo-dependencies-80605f2c02 branch January 15, 2024 18:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant