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

cargo: bump the cargo-dependencies group across 1 directory with 14 updates #58

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 28, 2024

Bumps the cargo-dependencies group with 13 updates in the / directory:

Package From To
clap 4.5.9 4.5.18
indexmap 2.2.6 2.5.0
open 5.2.0 5.3.0
poem 3.0.1 3.1.0
rust-embed 8.4.0 8.5.0
serde 1.0.204 1.0.210
thiserror 1.0.61 1.0.64
toml 0.8.14 0.8.15
insta 1.39.0 1.40.0
tempfile 3.10.1 3.11.0
tauri 1.6.8 1.7.1
serde_json 1.0.120 1.0.128
tauri-build 1.5.3 1.5.5

Updates clap from 4.5.9 to 4.5.18

Release notes

Sourced from clap's releases.

v4.5.18

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

v4.5.16

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing

v4.5.15

[4.5.15] - 2024-08-10

Compatiblity

  • (unstable-ext) Arg::remove changed return types

Fixes

  • (unstable-ext) Make Arg::remove return the removed item

v4.5.14

[4.5.14] - 2024-08-08

Features

  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it

v4.5.13

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

[4.5.12] - 2024-07-31

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.18] - 2024-09-20

Features

  • (builder) Expose Arg::get_display_order and Command::get_display_order

[4.5.17] - 2024-09-04

Fixes

  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing

[4.5.15] - 2024-08-10

Compatiblity

  • (unstable-ext) Arg::remove changed return types

Fixes

  • (unstable-ext) Make Arg::remove return the removed item

[4.5.14] - 2024-08-08

Features

  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

[4.5.12] - 2024-07-31

[4.5.11] - 2024-07-25

[4.5.10] - 2024-07-23

Commits
  • d811585 chore: Release
  • ab948b3 docs: Update changelog
  • 82e599e Merge pull request #5602 from shannmu/delimiter_values
  • 59bf26d feat(clap_complete): Support delimiter values in native completions
  • ccecab3 test(clap_complete): Add test cases for delimiter_values support
  • a3a4764 docs(derive): Specify Parser::update_from semantics
  • df165a2 docs(derive): Flatten isn't just for update
  • 5488bcf docs(derive): Connect more dots for Args/Subcommand
  • 6013ad4 chore: Release
  • f98e3ee docs: Update changelog
  • Additional commits viewable in compare view

Updates indexmap from 2.2.6 to 2.5.0

Changelog

Sourced from indexmap's changelog.

2.5.0

  • Added an insert_before method to IndexMap and IndexSet, as an alternative to shift_insert with different behavior on existing entries.
  • Added first_entry and last_entry methods to IndexMap.
  • Added From implementations between IndexedEntry and OccupiedEntry.

2.4.0

  • Added methods IndexMap::append and IndexSet::append, moving all items from one map or set into another, and leaving the original capacity for reuse.

2.3.0

  • Added trait MutableEntryKey for opt-in mutable access to map entry keys.
  • Added method MutableKeys::iter_mut2 for opt-in mutable iteration of map keys and values.
Commits
  • 48ed490 Release 2.5.0
  • 139d7ad Merge pull request #340 from cuviper/insert-bounds
  • 1d9b5e3 Add doc examples for insert_before and shift_insert
  • 8ca01b0 Use insert_before for "new" entries in insert_sorted
  • 7224def Add insert_before as an alternate to shift_insert
  • 0247a15 Document and assert index bounds in shift_insert
  • 922c6ad Update the CI badge
  • e482e17 Merge pull request #342 from cuviper/btree-like
  • b63e4a1 Merge pull request #341 from cuviper/from-entry
  • 264e5b7 Add doc aliases like BTreeMap/BTreeSet
  • Additional commits viewable in compare view

Updates open from 5.2.0 to 5.3.0

Release notes

Sourced from open's releases.

v5.3.0

New Features

  • add GNU/Hurd support Handle it like most of the other Unix platforms (e.g. Linux, BSDs, etc).

Commit Statistics

  • 2 commits contributed to the release.
  • 7 days passed between releases.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
    • Merge pull request #101 from pinotree/hurd (a060608)
    • Add GNU/Hurd support (58142a6)
Changelog

Sourced from open's changelog.

5.3.0 (2024-07-10)

New Features

  • add GNU/Hurd support Handle it like most of the other Unix platforms (e.g. Linux, BSDs, etc).

Commit Statistics

  • 2 commits contributed to the release.
  • 7 days passed between releases.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

  • Uncategorized
Commits

Updates poem from 3.0.1 to 3.1.0

Commits

Updates rust-embed from 8.4.0 to 8.5.0

Changelog

Sourced from rust-embed's changelog.

[8.5.0] - 2024-07-09

  • Re-export RustEmbed as Embed #246. Thanks to krant
  • Allow users to specify a custom path to the rust_embed crate in generated code#232. Thanks to Wulf
  • Increase minimum rust-version to v1.7.0.0
Commits

Updates serde from 1.0.204 to 1.0.210

Release notes

Sourced from serde's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)

v1.0.206

  • Improve support for flatten attribute inside of enums (#2567, thanks @​Mingun)

v1.0.205

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#2791)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view

Updates thiserror from 1.0.61 to 1.0.64

Release notes

Sourced from thiserror's releases.

1.0.64

  • Exclude derived impls from coverage instrumentation (#322, thanks @​oxalica)

1.0.63

  • Documentation improvements

1.0.62

  • Support referring to nested tuple struct fields inside #[error("…", …)] attribute (#309)
Commits
  • 84484bc Release 1.0.64
  • 023f036 Merge pull request #322 from oxalica/feat/mark-auto-derived
  • ae1f47e Mark #[automatically_derived] for generated impls
  • ab5b5e3 Upload CI Cargo.lock for reproducing failures
  • 00b3c14 Work around new dead code warning in test
  • 915c75e Release 1.0.63
  • 3d5ec25 Merge pull request #312 from dtolnay/backtracedoc
  • de8a1e5 Update documentation of #[from] and #[backtrace] attributes
  • 0bf6e3d Release 1.0.62
  • 4977932 Merge pull request #310 from dtolnay/nestedtuple
  • Additional commits viewable in compare view

Updates tokio from 1.38.0 to 1.40.0

Release notes

Sourced from tokio's releases.

Tokio v1.40.0

1.40.0 (August 30th, 2024)

Added

  • io: add util::SimplexStream (#6589)
  • process: stabilize Command::process_group (#6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#6755)
  • task: add JoinSet::join_all (#6784)

Added (unstable)

  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#6742)

Changed

  • io: use vectored io for write_all_buf when possible (#6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#6744)
  • sync: mark mpsc types as UnwindSafe (#6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#6727)
  • task: use NonZeroU64 for task::Id (#6733)
  • task: include panic message when printing JoinError (#6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#6762)
  • time: eliminate timer wheel allocations (#6779)

Documented

  • docs: clarify that [build] section doesn't go in Cargo.toml (#6728)
  • io: clarify zero remaining capacity case (#6790)
  • macros: improve documentation for select! (#6774)
  • sync: document mpsc channel allocation behavior (#6773)

#6589: tokio-rs/tokio#6589 #6724: tokio-rs/tokio#6724 #6727: tokio-rs/tokio#6727 #6728: tokio-rs/tokio#6728 #6731: tokio-rs/tokio#6731 #6733: tokio-rs/tokio#6733 #6742: tokio-rs/tokio#6742 #6744: tokio-rs/tokio#6744 #6753: tokio-rs/tokio#6753 #6755: tokio-rs/tokio#6755 #6762: tokio-rs/tokio#6762 #6773: tokio-rs/tokio#6773 #6774: tokio-rs/tokio#6774 #6779: tokio-rs/tokio#6779 #6783: tokio-rs/tokio#6783 #6784: tokio-rs/tokio#6784 #6790: tokio-rs/tokio#6790

... (truncated)

Commits

Updates toml from 0.8.14 to 0.8.15

Commits
  • 9217e44 chore: Release
  • 003ce94 docs: Update changelog
  • b463f3d Merge pull request #757 from epage/key
  • 3d8852b fix(encode): Be extra sure it can be a literal
  • e1bc1c3 refactor(encode): Pull out literal inference
  • fbb0ac2 test(encode): Add property-based tests for keys/strings
  • 0b268f2 fix(encode): Correct encoding for key with mixed quotes
  • 82c0195 refactor(encode): Make str repr inferring clearer
  • 330b590 refactor(encode): Extract all str repr inferring
  • 00fb5ee test(edit): Add more roundtrip testing
  • Additional commits viewable in compare view

Updates insta from 1.39.0 to 1.40.0

Release notes

Sourced from insta's releases.

1.40.0

Release Notes

  • cargo-insta no longer panics when running cargo test --accept --workspace on a workspace with a default crate. #532

  • MSRV for insta has been raised to 1.60, and for cargo-insta to 1.64.

  • Added support for compact debug snapshots (assert_compact_debug_snapshot). #514

  • Deprecate --no-force-pass in cargo-insta. The --check option covers the same functionality and has a clearer name. #513

  • Inline snapshots now use the required number of #s to escape the snapshot value, rather than always using ###. This allows snapshotting values which themselves contain ###. If there are no existing # characters in the snapshot value, a single # will be used. #540

  • Inline snapshots can now be updated with --force-update-snapshots. #569

  • cargo insta test accepts multiple --exclude flags. #520

  • test runner in insta's yaml config works. #544

  • Print a warning when encountering old snapshot formats. #503

  • Group the options in cargo insta --help, upgrade to clap from structopt. #518

  • No longer suggest running cargo insta message when running cargo insta test --check. #515

  • Print a clearer error message when accepting a snapshot that was removed. #516

  • Mark require-full-match as experimental, given some corner-cases are currently difficult to manage. #497

  • Add a new integration test approach for cargo-insta and a set of integration tests. #537

  • Enable Filters to be created from IntoIterator types, rather than just Vecs. #570

  • Implemented total sort order for an internal Key type correctly. This prevents potential crashes introduced by the new sort algorithm in Rust 1.81. #586

Install cargo-insta 1.40.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.40.0/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

... (truncated)

Changelog

Sourced from insta's changelog.

1.40.0

  • cargo-insta no longer panics when running cargo insta test --accept --workspace on a workspace with a default crate. #532

  • MSRV for insta has been raised to 1.60, and for cargo-insta to 1.64.

  • Added support for compact debug snapshots (assert_compact_debug_snapshot). #514

  • Deprecate --no-force-pass in cargo-insta. The --check option covers the same functionality and has a clearer name. #513

  • Inline snapshots now use the required number of #s to escape the snapshot value, rather than always using ###. This allows snapshotting values which themselves contain ###. If there are no existing # characters in the snapshot value, a single # will be used. #540

  • Inline snapshots can now be updated with --force-update-snapshots. #569

  • cargo insta test accepts multiple --exclude flags. #520

  • test runner in insta's yaml config works. #544

  • Print a warning when encountering old snapshot formats. #503

  • Group the options in cargo insta --help, upgrade to clap from structopt. #518

  • No longer suggest running cargo insta message when running cargo insta test --check. #515

  • Print a clearer error message when accepting a snapshot that was removed. #516

  • Mark require-full-match as experimental, given some corner-cases are currently difficult to manage. #497

  • Add a new integration test approach for cargo-insta and a set of integration tests. #537

  • Enable Filters to be created from IntoIterator types, rather than just Vecs. #570

  • Implemented total sort order for an internal Key type correctly. This prevents potential crashes introduced by the new sort algorithm in Rust 1.81. #586

Commits

Updates tempfile from 3.10.1 to 3.11.0

Changelog

Sourced from tempfile's changelog.

3.11.0

  • Add the ability to override the default temporary directory. This API shouldn't be used in general, but there are some cases where it's unavoidable.
Commits

Updates tauri from 1.6.8 to 1.7.1

Release notes

Sourced from tauri's releases.

tauri-bundler v1.7.0

Updating crates.io index Locking 594 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 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.4) 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.17) 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.2.0) 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.1) Adding gdk-pixbuf-sys v0.15.10 (latest: v0.20.1) 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.1) Adding gio-sys v0.15.10 (latest: v0.20.1) Adding glib v0.15.12 (latest: v0.20.3) Adding glib-macros v0.15.13 (latest: v0.20.3) Adding glib-sys v0.15.10 (latest: v0.20.2)

... (truncated)

Commits

Updates serde_json from 1.0.120 to 1.0.128

Release notes

Sourced from serde_json's releases.

1.0.128

  • Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @​Mrreadiness)

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)

v1.0.124

v1.0.123

v1.0.122

  • Support using json! in no-std crates (#1166)

v1.0.121

Commits
  • d96b1d9 Release 1.0.128
  • 599228d Merge pull request #1188 from Mrreadiness/feat/add-hashmap-key-128-serializer
  • 5416cee feat: add support for 128 bit HashMap key serialization
  • 27a4ca9 Upload CI Cargo.lock for reproducing failures
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • Additional commits viewable in compare view

Updates tauri-build from 1.5.3 to 1.5.5

Release notes

Sourced from tauri-build's releases.

tauri-build v1.5.5

Updating crates.io index Locking 594 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 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.4) 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.17) 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.2.0) 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.1) Adding gdk-pixbuf-sys v0.15.10 (latest: v0.20.1) 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.1) Adding gio-sys v0.15.10 (latest: v0.20.1) Adding glib v0.15.12 (latest: v0.20.3) Adding glib-macros v0.15.13 (latest: v0.20.3) Adding glib-sys v0.15.10 (latest: v0.20.2)

... (truncated)

Commits
  • bd3c153 Apply Version Updates From Current Changes (v1) (#11012)
  • 328b11f fix(ci): increase timeout, cache updater fixtures
  • 649e01f fix(tests): start updater server once
  • 02dfb03 fix(tests): use hyper instead of tiny-http to serve updates
  • 963411a chore(tests): enhance e2e test logs and delay for CI
  • 70b8525 fix(ci): install webkit2gtk-4.1 for e2e tests
  • 6d629cb fix: integration tests
  • 5f5c7c7 fix(ci): downgrade mac-notification-sys to 0.6.1
  • 26d243f fix(core): restart cannot handle binary name change on macOS (#10991)
  • 8a0e93b fixes iframes in windows causes window.TAURI_INVOKE is not a function err...
  • Additional commits viewable in compare view

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 28, 2024
@ilyagr
Copy link
Owner

ilyagr commented Sep 28, 2024

@dependabot rebase

…pdates

Bumps the cargo-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.9` | `4.5.18` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.6` | `2.5.0` |
| [open](https://github.com/Byron/open-rs) | `5.2.0` | `5.3.0` |
| [poem](https://github.com/poem-web/poem) | `3.0.1` | `3.1.0` |
| [rust-embed](https://github.com/pyros2097/rust-embed) | `8.4.0` | `8.5.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.204` | `1.0.210` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.61` | `1.0.64` |
| [toml](https://github.com/toml-rs/toml) | `0.8.14` | `0.8.15` |
| [insta](https://github.com/mitsuhiko/insta) | `1.39.0` | `1.40.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.10.1` | `3.11.0` |
| [tauri](https://github.com/tauri-apps/tauri) | `1.6.8` | `1.7.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.120` | `1.0.128` |
| [tauri-build](https://github.com/tauri-apps/tauri) | `1.5.3` | `1.5.5` |



Updates `clap` from 4.5.9 to 4.5.18
- [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.9...clap_complete-v4.5.18)

Updates `indexmap` from 2.2.6 to 2.5.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.2.6...2.5.0)

Updates `open` from 5.2.0 to 5.3.0
- [Release notes](https://github.com/Byron/open-rs/releases)
- [Changelog](https://github.com/Byron/open-rs/blob/main/changelog.md)
- [Commits](Byron/open-rs@v5.2.0...v5.3.0)

Updates `poem` from 3.0.1 to 3.1.0
- [Release notes](https://github.com/poem-web/poem/releases)
- [Commits](https://github.com/poem-web/poem/commits)

Updates `rust-embed` from 8.4.0 to 8.5.0
- [Changelog](https://github.com/pyrossh/rust-embed/blob/master/changelog.md)
- [Commits](https://github.com/pyros2097/rust-embed/commits)

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

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

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

Updates `toml` from 0.8.14 to 0.8.15
- [Commits](toml-rs/toml@toml-v0.8.14...toml-v0.8.15)

Updates `insta` from 1.39.0 to 1.40.0
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.39.0...1.40.0)

Updates `tempfile` from 3.10.1 to 3.11.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.10.1...v3.11.0)

Updates `tauri` from 1.6.8 to 1.7.1
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-v1.6.8...tauri-v1.7.1)

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

Updates `tauri-build` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-build-v1.5.3...tauri-build-v1.5.5)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: open
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: poem
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: rust-embed
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tauri
  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: tauri-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-dependencies-32455ceda2 branch from 05821ce to 70a40e6 Compare September 28, 2024 23:23
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 29, 2024

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Sep 29, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-dependencies-32455ceda2 branch September 29, 2024 03:16
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.

1 participant