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 rust-updates group across 1 directory with 12 updates #5304

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 24, 2024

Bumps the rust-updates group with 12 updates in the / directory:

Package From To
uuid 1.10.0 1.11.0
serde 1.0.210 1.0.213
thiserror 1.0.64 1.0.65
tokio 1.40.0 1.41.0
anyhow 1.0.89 1.0.91
futures 0.3.30 0.3.31
once_cell 1.20.1 1.20.2
serde_json 1.0.128 1.0.132
tauri 1.8.0 1.8.1
sysinfo 0.31.4 0.32.0
clap 4.5.19 4.5.20
regex 1.11.0 1.11.1

Updates uuid from 1.10.0 to 1.11.0

Release notes

Sourced from uuid's releases.

1.11.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.10.0...1.11.0

Commits

Updates serde from 1.0.210 to 1.0.213

Release notes

Sourced from serde's releases.

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • 58a8d22 Release 1.0.213
  • ef0ed22 Merge pull request #2847 from dtolnay/newtypewith
  • 79925ac Ignore dead_code warning in regression test
  • b60e409 Hygiene for macro-generated newtype struct deserialization with 'with' attr
  • fdc36e5 Add regression test for issue 2846
  • 49e11ce Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
  • 7ae1b5f Release 1.0.212
  • 1ac054b Merge pull request #2845 from dtolnay/withlocal
  • 1e36ef5 Fix hygiene of macro-generated local variable accesses in serde(with) wrappers
  • 0058c72 Add regression test for issue 2844
  • Additional commits viewable in compare view

Updates thiserror from 1.0.64 to 1.0.65

Release notes

Sourced from thiserror's releases.

1.0.65

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#325)
Commits

Updates tokio from 1.40.0 to 1.41.0

Release notes

Sourced from tokio's releases.

Tokio v1.41.0

1.41.0 (Oct 22th, 2024)

Added

  • metrics: stabilize global_queue_depth (#6854, #6918)
  • net: add conversions for unix SocketAddr (#6868)
  • sync: add watch::Sender::sender_count (#6836)
  • sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • task: stabilize Id apis (#6793, #6891)

Added (unstable)

  • metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • metrics: rename some histogram apis (#6924)
  • runtime: add LocalRuntime (#6808)

Changed

  • runtime: box futures larger than 16k on release mode (#6826)
  • sync: add #[must_use] to Notified (#6828)
  • sync: make watch cooperative (#6846)
  • sync: make broadcast::Receiver cooperative (#6870)
  • task: add task size to tracing instrumentation (#6881)
  • wasm: enable cfg_fs for wasi target (#6822)

Fixed

  • net: fix regression of abstract socket path in unix socket (#6838)

Documented

  • io: recommend OwnedFd with AsyncFd (#6821)
  • io: document cancel safety of AsyncFd methods (#6890)
  • macros: render more comprehensible documentation for join and try_join (#6814, #6841)
  • net: fix swapped examples for TcpSocket::set_nodelay and TcpSocket::nodelay (#6840)
  • sync: document runtime compatibility (#6833)

#6793: tokio-rs/tokio#6793 #6808: tokio-rs/tokio#6808 #6810: tokio-rs/tokio#6810 #6814: tokio-rs/tokio#6814 #6821: tokio-rs/tokio#6821 #6822: tokio-rs/tokio#6822 #6826: tokio-rs/tokio#6826 #6828: tokio-rs/tokio#6828 #6833: tokio-rs/tokio#6833 #6836: tokio-rs/tokio#6836 #6838: tokio-rs/tokio#6838 #6840: tokio-rs/tokio#6840

... (truncated)

Commits
  • 01e04da chore: prepare Tokio v1.41.0 (#6917)
  • 92ccade runtime: fix stability feature flags for docs (#6909)
  • fbfeb9a metrics: rename *_poll_count_* to *_poll_time_* (#6924)
  • da745ff metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • ce1c74f metrics: fix deadlock in injection_queue_depth_multi_thread test (#6916)
  • 28c9a14 metrics: rename injection_queue_depth to global_queue_depth (#6918)
  • 32e0b43 ci: freeze FreeBSD and wasm-unknown-unknown on rustc 1.81 (#6911)
  • 1656d8e sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • c9e998e ci: print the correct sort order of the dictionary on failure (#6905)
  • 512e9de rt: add LocalRuntime (#6808)
  • Additional commits viewable in compare view

Updates anyhow from 1.0.89 to 1.0.91

Release notes

Sourced from anyhow's releases.

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)

1.0.90

  • Documentation improvements
Commits
  • 6c52daa Release 1.0.91
  • 4986853 Merge pull request #388 from dtolnay/outdir
  • f130b76 Clean up dep-info files from OUT_DIR
  • a0b868a Release 1.0.90
  • 0f74169 Improve rendering of inline code in macros documentation
  • 8ce4560 Ignore needless_lifetimes clippy lint
  • be64707 Resolve used_underscore_items pedantic clippy lint
  • See full diff in compare view

Updates futures from 0.3.30 to 0.3.31

Release notes

Sourced from futures's releases.

0.3.31

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Changelog

Sourced from futures's changelog.

0.3.31 - 2024-10-05

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Commits
  • 1e05281 Release 0.3.31
  • 8a8b085 Fix clippy::uninit_vec warning
  • f3fb74d Document how BoxFutures / BoxStreams are often made (#2887)
  • f00e7af Fix use after free of task in FuturesUnordered when dropped future panics (#2...
  • 33c46b3 ci: Work around sanitizer issue on latest Linux kernel
  • 7bf5a72 Fix issues with AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • 87afaf3 Use #[inline(always)] on clone_arc_raw (#2865)
  • 549b90b Add accessors for the inner of stream::Iter (#2875)
  • 07b004a Add missing symbols (#2883)
  • 86dc069 Various fixes too make the CI green (#2885)
  • Additional commits viewable in compare view

Updates once_cell from 1.20.1 to 1.20.2

Changelog

Sourced from once_cell's changelog.

1.20.2

  • Remove portable_atomic from Cargo.lock if it is not, in fact, used: #267 This is a work-around for this cargo bug: rust-lang/cargo#10801.
Commits

Updates serde_json from 1.0.128 to 1.0.132

Release notes

Sourced from serde_json's releases.

1.0.132

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#1206)

1.0.131

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#1135, thanks @​swlynch99)

1.0.130

  • Support converting and deserializing Number from i128 and u128 (#1141, thanks @​druide)

1.0.129

Commits
  • 86d933c Release 1.0.132
  • f45b422 Merge pull request #1206 from dtolnay/hasnext
  • f2082d2 Clearer order of comparisons
  • 0f54a1a Handle early return sooner on eof in seq or map
  • 2a4cb44 Rearrange 'match peek'
  • 4cb90ce Merge pull request #1205 from dtolnay/hasnext
  • b71ccd2 Reduce duplicative instantiation of logic in SeqAccess and MapAccess
  • a810ba9 Release 1.0.131
  • 0d084c5 Touch up PR 1135
  • b4954a9 Merge pull request #1135 from swlynch99/map-deserializer
  • Additional commits viewable in compare view

Updates tauri from 1.8.0 to 1.8.1

Release notes

Sourced from tauri's releases.

tauri v1.8.1

Updating crates.io index Locking 592 packages to latest compatible versions Adding atk v0.15.1 (latest: v0.18.0) Adding atk-sys v0.15.1 (latest: v0.18.0) Adding base64 v0.13.1 (latest: v0.22.1) Adding base64 v0.21.7 (latest: v0.22.1) Adding bit-set v0.5.3 (latest: v0.8.0) Adding bit-vec v0.6.3 (latest: v0.8.0) Adding bitflags v1.3.2 (latest: v2.6.0) Adding brotli v6.0.0 (latest: v7.0.0) Adding cairo-rs v0.15.12 (latest: v0.20.1) Adding cairo-sys-rs v0.15.1 (latest: v0.20.0) Adding cargo_toml v0.15.3 (latest: v0.20.5) Adding cfb v0.7.3 (latest: v0.10.0) Adding cfg-expr v0.9.1 (latest: v0.17.0) Adding cfg-expr v0.15.8 (latest: v0.17.0) Adding cfg_aliases v0.1.1 (latest: v0.2.1) Adding clap v3.2.25 (latest: v4.5.20) Adding clap_lex v0.2.4 (latest: v0.7.2) Adding cocoa v0.24.1 (latest: v0.26.0) Adding cocoa-foundation v0.1.2 (latest: v0.2.0) Adding convert_case v0.4.0 (latest: v0.6.0) Adding core-foundation v0.9.4 (latest: v0.10.0) Adding core-graphics v0.22.3 (latest: v0.24.0) Adding core-graphics v0.23.2 (latest: v0.24.0) Adding core-graphics-types v0.1.3 (latest: v0.2.0) Adding cssparser v0.27.2 (latest: v0.34.0) Adding derive-new v0.6.0 (latest: v0.7.0) Adding derive_more v0.99.18 (latest: v1.0.0) Adding env_logger v0.8.4 (latest: v0.11.5) Adding fixedbitset v0.4.2 (latest: v0.5.7) Adding fluent-uri v0.1.4 (latest: v0.3.2) Adding foreign-types v0.3.2 (latest: v0.5.0) Adding foreign-types-shared v0.1.1 (latest: v0.3.1) Adding freetype-sys v0.20.1 (latest: v0.22.1) Adding gdk v0.15.4 (latest: v0.18.0) Adding gdk-pixbuf v0.15.11 (latest: v0.20.4) Adding gdk-pixbuf-sys v0.15.10 (latest: v0.20.4) Adding gdk-sys v0.15.1 (latest: v0.18.0) Adding gdkwayland-sys v0.15.3 (latest: v0.18.0) Adding gdkx11-sys v0.15.1 (latest: v0.18.0) Adding generator v0.7.5 (latest: v0.8.3) Adding generic-array v0.14.7 (latest: v1.1.0) Adding gethostname v0.4.3 (latest: v0.5.0) Adding getrandom v0.1.16 (latest: v0.2.15) Adding gio v0.15.12 (latest: v0.20.4) Adding gio-sys v0.15.10 (latest: v0.20.4) Adding glib v0.15.12 (latest: v0.20.4) Adding glib-macros v0.15.13 (latest: v0.20.4)

... (truncated)

Commits

Updates sysinfo from 0.31.4 to 0.32.0

Changelog

Sourced from sysinfo's changelog.

0.32.0

  • Add new Disk::is_read_only API.
  • Add new remove_dead_processes argument to System::refresh_processes and System::refresh_processes_specifics.
  • macOS: Fix memory leak in disk refresh.
Commits
  • e022ae4 Merge pull request #1354 from GuillaumeGomez/update
  • 0c5ca6a Update migration guide for 0.32
  • 9f14cba Update crate version to 0.32.0
  • eb7f147 Update CHANGELOG for 0.32.0
  • 9c86e25 Fix new clippy lints
  • 2fb2903 Merge pull request #1353 from GuillaumeGomez/rm-dead-processes
  • 7452b8d Update System::refresh_processes API to give control over when to remove de...
  • 6f1d382 Merge pull request #1348 from kevinbaker/master
  • 6d5ea97 add dependency on windows SystemServices for disk
  • 1c87f50 win: add correct location of FILE_READ_ONLY_VOLUME, correct call
  • Additional commits viewable in compare view

Updates clap from 4.5.19 to 4.5.20

Changelog

Sourced from clap's changelog.

[4.5.20] - 2024-10-08

Features

  • (unstable) Add CommandExt
Commits
  • 5034cab chore: Release
  • b5b690c docs: Update changelog
  • abba196 Merge pull request #5688 from epage/rename
  • 6ddd5d4 fix(complete)!: Rename ArgValueCompleter to ArgValueCandidates
  • 71c5e27 fix(complete)!: Rename CustomCompleter to ValueCandidates
  • See full diff in compare view

Updates regex from 1.11.0 to 1.11.1

Changelog

Sourced from regex's changelog.

1.11.1 (2024-10-24)

This is a new patch release of regex that fixes compilation on nightly Rust when the unstable pattern crate feature is enabled. Users on nightly Rust without this feature enabled are unaffected.

Bug fixes:

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

…pdates

Bumps the rust-updates group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [uuid](https://github.com/uuid-rs/uuid) | `1.10.0` | `1.11.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.213` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.65` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.91` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.1` | `1.20.2` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.132` |
| [tauri](https://github.com/tauri-apps/tauri) | `1.8.0` | `1.8.1` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.31.4` | `0.32.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.19` | `4.5.20` |
| [regex](https://github.com/rust-lang/regex) | `1.11.0` | `1.11.1` |



Updates `uuid` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.10.0...1.11.0)

Updates `serde` from 1.0.210 to 1.0.213
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.213)

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

Updates `tokio` from 1.40.0 to 1.41.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.40.0...tokio-1.41.0)

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

Updates `futures` from 0.3.30 to 0.3.31
- [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.30...0.3.31)

Updates `once_cell` from 1.20.1 to 1.20.2
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.1...v1.20.2)

Updates `serde_json` from 1.0.128 to 1.0.132
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.128...1.0.132)

Updates `tauri` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-v1.8.0...tauri-v1.8.1)

Updates `sysinfo` from 0.31.4 to 0.32.0
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.31.4...v0.32.0)

Updates `clap` from 4.5.19 to 4.5.20
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.19...clap_complete-v4.5.20)

Updates `regex` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.0...1.11.1)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: tauri
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: sysinfo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-updates
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 24, 2024
Copy link

vercel bot commented Oct 24, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gitbutler-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 24, 2024 5:31pm

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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants