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

Bump the crates-io group across 1 directory with 34 updates #2098

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 4, 2024

Bumps the crates-io group with 33 updates in the / directory:

Package From To
anyhow 1.0.80 1.0.86
cargo-config2 0.1.24 0.1.26
flate2 1.0.28 1.0.30
goblin 0.8.0 0.8.2
platform-info 2.0.2 2.0.3
regex 1.10.3 1.10.4
serde 1.0.197 1.0.203
serde_json 1.0.114 1.0.117
tempfile 3.9.0 3.10.1
toml 0.8.10 0.8.14
thiserror 1.0.57 1.0.61
semver 1.0.22 1.0.23
indexmap 2.2.3 2.2.6
pyproject-toml 0.10.0 0.11.0
python-pkginfo 0.6.0 0.6.2
itertools 0.12.1 0.13.0
cc 1.0.88 1.0.98
normpath 1.1.1 1.2.0
pep440_rs 0.5.0 0.6.0
pep508_rs 0.4.2 0.6.0
time 0.3.34 0.3.36
minijinja 1.0.12 2.0.1
ureq 2.9.6 2.9.7
native-tls 0.2.11 0.2.12
rustls-pemfile 2.1.0 2.1.2
keyring 2.3.2 2.3.3
schemars 0.8.16 0.8.21
expect-test 1.4.1 1.5.0
rstest 0.18.2 0.21.0
indoc 2.0.4 2.0.5
rustversion 1.0.14 1.0.17
trycmd 0.15.0 0.15.4
which 6.0.0 6.0.1

Updates anyhow from 1.0.80 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)

1.0.82

  • Documentation improvements

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view

Updates cargo-config2 from 0.1.24 to 0.1.26

Release notes

Sourced from cargo-config2's releases.

0.1.26

0.1.25

  • Respect rustc_wrapper and rustc_workspace_wrapper in Config::{rustc_version, host_triple} to match the Cargo's new behavior. (Other APIs such as Config::rustc are already respecting wrappers.)
Changelog

Sourced from cargo-config2's changelog.

[0.1.26] - 2024-04-20

[0.1.25] - 2024-04-17

  • Respect rustc_wrapper and rustc_workspace_wrapper in Config::{rustc_version, host_triple} to match the Cargo's new behavior. (Other APIs such as Config::rustc are already respecting wrappers.)
Commits
  • 0831cf1 Release 0.1.26
  • e511f8c docs: Tweak examples
  • 0c7a8f9 Use format args capture
  • 7d75657 Do not apply rustc_workspace_wrapper when getting rustc version
  • e03ea78 Unify string conversion style
  • 0d0be15 tools: Update scripts
  • b0b777d docs: Update msrv badge and remove doc covered by it
  • e379d37 Release 0.1.25
  • f008eea Respect wrappers in Config::{rustc_version, host_triple}
  • 867792e Update .deny.toml
  • See full diff in compare view

Updates flate2 from 1.0.28 to 1.0.30

Release notes

Sourced from flate2's releases.

1.0.29 - with new zlib-rs feature (~zlib-ng in Rust)

With the new zlib-rs feature, a new backend is enabled that brings in a SIMD-accelerated Rust implementation.

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.28...1.0.29

Commits
  • d3bea90 Merge pull request #405 from Byron/fix-CI
  • 5048843 Merge pull request #407 from striezel-stash/actions-checkout-v4
  • 42c86ce Merge pull request #406 from striezel-stash/fix-some-typos
  • f7b99e9 Update actions/checkout in GitHub Actions workflows to v4
  • 563f1c4 Fix typos
  • 1126a4a prepare bugfix release to make docs work again
  • bc1b3e9 CI verifies that docs can be built (#404)
  • 5ce4154 fix CI by assuring builds work with --all-features enabled (#404)
  • 9a25bc0 Merge pull request #403 from folkertdev/bump-version-zlib-rs
  • e9c87c0 zlib-rs support version bump
  • Additional commits viewable in compare view

Updates goblin from 0.8.0 to 0.8.2

Changelog

Sourced from goblin's changelog.

Changelog

All notable changes to this project will be documented in this file.

Before 1.0, this project does not adhere to Semantic Versioning.

Goblin is now 0.8, which means we will try our best to ease breaking changes. Tracking issue is here: m4b/goblin#97

[0.8.1] - 2024-04-27

Docs

pe: document pe header, thanks @​JohnScience: m4b/goblin#399 pe, elf: fix doc warnings, thanks @​5225225: m4b/goblin#395 pe: document dos header, thanks @​JohnScience: m4b/goblin#393

Added

pe: add TE (terse executable) support, big thanks @​Javagedes: m4b/goblin#397 elf: allow parsing section headers from raw bytes, thanks @​lissyx: m4b/goblin#391 mach: add support for lossy parsing, thanks @​h33p: m4b/goblin#386 elf: add convenience functions, thanks @​tiann : m4b/goblin#387

Fixed

pe: read reserved dos headers, thanks @​kkent030315: m4b/goblin#405

Commits

Updates platform-info from 2.0.2 to 2.0.3

Release notes

Sourced from platform-info's releases.

2.0.3

What's Changed

Dependencies updates

New Contributors

Full Changelog: uutils/platform-info@2.0.2...2.0.3

Commits
  • 712babc Merge pull request #75 from sylvestre/clippy
  • 700a74e Some clippy fixes
  • a570d8a prepare version 2.0.3
  • fe054f8 update of the author
  • b01752b Merge pull request #74 from bzEq/aix-support
  • 545c9ca Add support for AIX
  • d62cd04 Merge pull request #73 from uutils/renovate/davidanson-markdownlint-cli2-acti...
  • b3f9f9b chore(deps): update davidanson/markdownlint-cli2-action action to v16
  • 469209d Merge pull request #72 from sylvestre/windows-clippy
  • 7cef590 Merge pull request #71 from uutils/renovate/streetsidesoftware-cspell-action-6.x
  • Additional commits viewable in compare view

Updates regex from 1.10.3 to 1.10.4

Commits
  • aa2d8bd 1.10.4
  • 088d7f3 api: add Cow guarantee to replace API
  • a5ae351 regex-automata-0.4.6
  • 9cf4a42 automata: fix bug where reverse NFA lacked an unanchored prefix
  • 10fe722 style: clean up some recent lint violations
  • d7f9347 regex-automata-0.4.5
  • 07ef7f1 automata: make additional prefileter metadata public
  • See full diff in compare view

Updates serde from 1.0.197 to 1.0.203

Release notes

Sourced from serde's releases.

v1.0.203

  • Documentation improvements (#2747)

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • Additional commits viewable in compare view

Updates serde_json from 1.0.114 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)

v1.0.116

v1.0.115

  • Documentation improvements
Commits
  • 0ae247c Release 1.0.117
  • 4517c7a PartialEq is not implemented between Value and 128-bit ints
  • fdf99c7 Combine number PartialEq tests
  • b4fc245 Merge pull request #1130 from serde-rs/checkcfg
  • 98f1a24 Resolve unexpected_cfgs warning
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • Additional commits viewable in compare view

Updates tempfile from 3.9.0 to 3.10.1

Changelog

Sourced from tempfile's changelog.

3.10.1

  • Handle potential integer overflows in 32-bit systems when seeking/truncating "spooled" temporary files past 4GiB (2³²).
  • Handle a theoretical 32-bit overflow when generating a temporary file name larger than 4GiB. Now it'll panic (on allocation failure) rather than silently succeeding due to wraparound.

Thanks to @​stoeckmann for finding and fixing both of these issues.

3.10.0

  • Drop redox_syscall dependency, we now use rustix for Redox.
  • Add Builder::permissions for setting the permissions on temporary files and directories (thanks to @​Byron).
  • Update rustix to 0.38.31.
  • Update fastrand to 2.0.1.
Commits

Updates toml from 0.8.10 to 0.8.14

Commits
  • c383efa chore: Release
  • 7bb1781 docs: Update changelog
  • 0af6deb Merge pull request #740 from epage/key-quotes
  • c9e36e7 fix(encode): Prefer literals over escaping double-quotes
  • 42f7a1b test(encode): Show existing quote behavior
  • 9e6290f chore(deps): Update compatible (dev) (#737)
  • dbf1cc1 Merge pull request #736 from epage/snapbox
  • ec9bfd7 chore: Update to snapbox 0.6
  • 881bf67 chore: Remove unused features
  • b62c76e refactor: Resolve deprecations
  • Additional commits viewable in compare view

Updates toml_edit from 0.22.6 to 0.22.14

Commits
  • c383efa chore: Release
  • 7bb1781 docs: Update changelog
  • 0af6deb Merge pull request #740 from epage/key-quotes
  • c9e36e7 fix(encode): Prefer literals over escaping double-quotes
  • 42f7a1b test(encode): Show existing quote behavior
  • 9e6290f chore(deps): Update compatible (dev) (#737)
  • dbf1cc1 Merge pull request #736 from epage/snapbox
  • ec9bfd7 chore: Update to snapbox 0.6
  • 881bf67 chore: Remove unused features
  • b62c76e refactor: Resolve deprecations
  • Additional commits viewable in compare view

Updates thiserror from 1.0.57 to 1.0.61

Release notes

Sourced from thiserror's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)

1.0.60

  • Resolve unexpected_cfgs warning (#298)

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits

Updates semver from 1.0.22 to 1.0.23

Release notes

Sourced from semver's releases.

1.0.23

  • Resolve unexpected_cfgs warning (#318)
Commits
  • 69efd3c Release 1.0.23
  • 451b419 Merge pull request #318 from dtolnay/checkcfg
  • 5b71485 Resolve unexpected_cfgs warning
  • c520af7 Revert "Temporarily disable miri on doctests"
  • 73b5d9e Merge pull request #313 from Saecki/patch-1
  • e8d61de chore: fix typo in safety comment
  • d282d48 Explicitly install a Rust toolchain for cargo-outdated job
  • 6e6ba22 Temporarily disable miri on doctests
  • See full diff in compare view

Updates indexmap from 2.2.3 to 2.2.6

Changelog

Sourced from indexmap's changelog.

2.2.6

  • Added trait MutableValues for opt-in mutable access to set values.

2.2.5

  • Added optional borsh serialization support.

2.2.4

  • Added an insert_sorted method on IndexMap, IndexSet, and VacantEntry.
  • Avoid hashing for lookups in single-entry maps.
  • Limit preallocated memory in serde deserializers.
Commits
  • 3f0fffb Merge pull request #323 from cuviper/mutable
  • 33c1a7c Fix unused_imports
  • b76ff73 Fix clippy::multiple_bound_locations
  • 0060546 Release 2.2.6
  • 210b027 Opt-in mutable access on IndexSet
  • 184fe4b Merge pull request #320 from cuviper/release-2.2.5
  • 5d7bd5e Release 2.2.5
  • c934ace Merge pull request #313 from heliaxdev/heliax/borsh-support
  • b81a4d2 Use S for the BuildHasher parameter
  • 32793f1 Don't require BuildHasher in BorshSerialize
  • Additional commits viewable in compare view

Updates pyproject-toml from 0.10.0 to 0.11.0

Changelog

Sourced from pyproject-toml's changelog.

0.11.0

  • Update pep440_rs to 0.6.0
  • Update pep508_rs to 0.6.0

0.8.0

  • The build_system table is now optional. There are many projects that use pyproject.toml for tool configuration without specifying a build backend, which this change reflects.

0.6.0

  • Update to latest PEP 639 draft. The license key is now an enum that can either be an SPDX identifier or the previous table form, which accepting PEP 639 would deprecate. The previous implementation of a project.license-expression key in pyproject.toml has been removed.
Commits

Updates python-pkginfo from 0.6.0 to 0.6.2

Commits
  • 5609785 Release 0.6.2 (#17)
  • bfd695b Merge pull request #14 from decathorpe/main
  • 22ccdac Merge branch 'main' into fork/main
  • eca3cb9 Merge pull request #16 from PyO3/konsti/test-minimal-versions
  • 89515f7 Test minimal versions in CI
  • b9b8386 Merge pull request #15 from PyO3/konsti/commit-cargo-lock
  • 81d6a82 Add Cargo.lock to git
  • b3e373b deps: relax zip dependency to allow building with v0.6 and v1
  • 56159c4 Bump version to 0.6.1
  • 242d9fb Update zip and ref2047-decoder to 1.0, mailparse to 0.15
  • Additional commits viewable in compare view

Updates itertools from 0.12.1 to 0.13.0

Changelog

Sourced from itertools's changelog.

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)
  • Deprecated unfold (use std::iter::from_fn instead) (#871)
  • Optimized GroupingMapBy (#873, #876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#886)
  • Relaxed Debug/Clone bounds for MapInto (#889)
  • Documented the use_alloc feature (#887)
  • Optimized Itertools::set_from (#888)
  • Removed badges in README.md (#890)
  • Added "no-std" categories in Cargo.toml (#894)
  • Fixed Itertools::k_smallest on short unfused iterators (#900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#909)
  • Specialized Combinations::nth (#914)
  • Specialized MergeBy::fold (#920)
  • Specialized CombinationsWithReplacement::nth (#923)
  • Specialized FlattenOk::{fold, rfold} (#927)
  • Specialized Powerset::nth (#924)
  • Documentation fixes (#882, #936)
  • Fixed assert_equal for iterators longer than i32::MAX (#932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#939)

Notable Internal Changes

  • Tested iterator laziness (#792)
  • Created CONTRIBUTING.md (#767)
Commits
  • d5084d1 Prepare v0.13.0 release (#937)
  • d7c99d5 TupleCombinations is not lazy but must be used nonetheless
  • 074c7fc KMergeBy is not lazy but must be used nonetheless
  • 2ad9e07 assert_equal: fix clippy::default_numeric_fallback
  • 0d4efc8 Remove free function get
  • 05cc0ee get(s..=usize::MAX) should be fine when s != 0
  • 3c16f14 get: when is it ESI and/or DEI
  • 4dd6ba0 get: panics if the range includes usize::MAX
  • 7a9ce56 get(r: Range) as Skip\<Take>
  • f676f2f Remove the unspecified check about .get(exhausted_range_inclusive)
  • Additional commits viewable in compare view

Updates cc from 1.0.88 to 1.0.98

Release notes

Sourced from cc's releases.

1.0.98

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.97...1.0.98

1.0.97

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.96...1.0.97

1.0.96

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.95...1.0.96

1.0.95

What's Changed

  • Update windows-bindgen requirement from 0.55 to 0.56 by

Bumps the crates-io group with 33 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.80` | `1.0.86` |
| [cargo-config2](https://github.com/taiki-e/cargo-config2) | `0.1.24` | `0.1.26` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.28` | `1.0.30` |
| [goblin](https://github.com/m4b/goblin) | `0.8.0` | `0.8.2` |
| [platform-info](https://github.com/uutils/platform-info) | `2.0.2` | `2.0.3` |
| [regex](https://github.com/rust-lang/regex) | `1.10.3` | `1.10.4` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.203` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.114` | `1.0.117` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.9.0` | `3.10.1` |
| [toml](https://github.com/toml-rs/toml) | `0.8.10` | `0.8.14` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.61` |
| [semver](https://github.com/dtolnay/semver) | `1.0.22` | `1.0.23` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.3` | `2.2.6` |
| [pyproject-toml](https://github.com/PyO3/pyproject-toml-rs) | `0.10.0` | `0.11.0` |
| [python-pkginfo](https://github.com/PyO3/python-pkginfo-rs) | `0.6.0` | `0.6.2` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.13.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.88` | `1.0.98` |
| [normpath](https://github.com/dylni/normpath) | `1.1.1` | `1.2.0` |
| [pep440_rs](https://github.com/konstin/pep440-rs) | `0.5.0` | `0.6.0` |
| [pep508_rs](https://github.com/konstin/pep508_rs) | `0.4.2` | `0.6.0` |
| [time](https://github.com/time-rs/time) | `0.3.34` | `0.3.36` |
| [minijinja](https://github.com/mitsuhiko/minijinja) | `1.0.12` | `2.0.1` |
| [ureq](https://github.com/algesten/ureq) | `2.9.6` | `2.9.7` |
| [native-tls](https://github.com/sfackler/rust-native-tls) | `0.2.11` | `0.2.12` |
| [rustls-pemfile](https://github.com/rustls/pemfile) | `2.1.0` | `2.1.2` |
| [keyring](https://github.com/hwchen/keyring-rs) | `2.3.2` | `2.3.3` |
| [schemars](https://github.com/GREsau/schemars) | `0.8.16` | `0.8.21` |
| [expect-test](https://github.com/rust-analyzer/expect-test) | `1.4.1` | `1.5.0` |
| [rstest](https://github.com/la10736/rstest) | `0.18.2` | `0.21.0` |
| [indoc](https://github.com/dtolnay/indoc) | `2.0.4` | `2.0.5` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.14` | `1.0.17` |
| [trycmd](https://github.com/assert-rs/trycmd) | `0.15.0` | `0.15.4` |
| [which](https://github.com/harryfei/which-rs) | `6.0.0` | `6.0.1` |



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

Updates `cargo-config2` from 0.1.24 to 0.1.26
- [Release notes](https://github.com/taiki-e/cargo-config2/releases)
- [Changelog](https://github.com/taiki-e/cargo-config2/blob/main/CHANGELOG.md)
- [Commits](taiki-e/cargo-config2@v0.1.24...v0.1.26)

Updates `flate2` from 1.0.28 to 1.0.30
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.28...1.0.30)

Updates `goblin` from 0.8.0 to 0.8.2
- [Changelog](https://github.com/m4b/goblin/blob/master/CHANGELOG.md)
- [Commits](https://github.com/m4b/goblin/commits)

Updates `platform-info` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/uutils/platform-info/releases)
- [Commits](uutils/platform-info@2.0.2...2.0.3)

Updates `regex` from 1.10.3 to 1.10.4
- [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.10.3...1.10.4)

Updates `serde` from 1.0.197 to 1.0.203
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.197...v1.0.203)

Updates `serde_json` from 1.0.114 to 1.0.117
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.114...v1.0.117)

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

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

Updates `toml_edit` from 0.22.6 to 0.22.14
- [Commits](toml-rs/toml@v0.22.6...v0.22.14)

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

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

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

Updates `pyproject-toml` from 0.10.0 to 0.11.0
- [Changelog](https://github.com/PyO3/pyproject-toml-rs/blob/main/Changelog.md)
- [Commits](https://github.com/PyO3/pyproject-toml-rs/commits)

Updates `python-pkginfo` from 0.6.0 to 0.6.2
- [Commits](PyO3/python-pkginfo-rs@v0.6.0...v0.6.2)

Updates `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

Updates `cc` from 1.0.88 to 1.0.98
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.88...1.0.98)

Updates `normpath` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/dylni/normpath/releases)
- [Commits](dylni/normpath@1.1.1...1.2.0)

Updates `pep440_rs` from 0.5.0 to 0.6.0
- [Changelog](https://github.com/konstin/pep440-rs/blob/main/Changelog.md)
- [Commits](konstin/pep440-rs@v0.5.0...v0.6.0)

Updates `pep508_rs` from 0.4.2 to 0.6.0
- [Changelog](https://github.com/konstin/pep508_rs/blob/main/Changelog.md)
- [Commits](konstin/pep508_rs@v0.4.2...v0.6.0)

Updates `time` from 0.3.34 to 0.3.36
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.34...v0.3.36)

Updates `minijinja` from 1.0.12 to 2.0.1
- [Release notes](https://github.com/mitsuhiko/minijinja/releases)
- [Changelog](https://github.com/mitsuhiko/minijinja/blob/main/CHANGELOG.md)
- [Commits](mitsuhiko/minijinja@1.0.12...2.0.1)

Updates `ureq` from 2.9.6 to 2.9.7
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.9.6...2.9.7)

Updates `native-tls` from 0.2.11 to 0.2.12
- [Release notes](https://github.com/sfackler/rust-native-tls/releases)
- [Changelog](https://github.com/sfackler/rust-native-tls/blob/master/CHANGELOG.md)
- [Commits](sfackler/rust-native-tls@v0.2.11...v0.2.12)

Updates `rustls-pemfile` from 2.1.0 to 2.1.2
- [Release notes](https://github.com/rustls/pemfile/releases)
- [Commits](rustls/pemfile@v/2.1.0...v/2.1.2)

Updates `keyring` from 2.3.2 to 2.3.3
- [Release notes](https://github.com/hwchen/keyring-rs/releases)
- [Changelog](https://github.com/hwchen/keyring-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hwchen/keyring-rs/commits/v2.3.3)

Updates `schemars` from 0.8.16 to 0.8.21
- [Release notes](https://github.com/GREsau/schemars/releases)
- [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md)
- [Commits](GREsau/schemars@v0.8.16...v0.8.21)

Updates `expect-test` from 1.4.1 to 1.5.0
- [Changelog](https://github.com/rust-analyzer/expect-test/blob/master/CHANGELOG.md)
- [Commits](rust-analyzer/expect-test@v1.4.1...v1.5.0)

Updates `rstest` from 0.18.2 to 0.21.0
- [Release notes](https://github.com/la10736/rstest/releases)
- [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md)
- [Commits](la10736/rstest@v0.18.2...v0.21.0)

Updates `indoc` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/dtolnay/indoc/releases)
- [Commits](dtolnay/indoc@2.0.4...2.0.5)

Updates `rustversion` from 1.0.14 to 1.0.17
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.14...1.0.17)

Updates `trycmd` from 0.15.0 to 0.15.4
- [Commits](assert-rs/snapbox@v0.15.0...trycmd-v0.15.4)

Updates `which` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@6.0.0...6.0.1)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: cargo-config2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: goblin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: platform-info
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: toml_edit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: pyproject-toml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: python-pkginfo
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: cc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: normpath
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: pep440_rs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: pep508_rs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: minijinja
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: crates-io
- dependency-name: ureq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: native-tls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: rustls-pemfile
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: keyring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: schemars
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: expect-test
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: rstest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: indoc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: rustversion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: trycmd
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Something related to dependencies rust Pull requests that update Rust code labels Jun 4, 2024
Copy link

netlify bot commented Jun 4, 2024

Deploy Preview for maturin-guide ready!

Name Link
🔨 Latest commit 2d31703
🔍 Latest deploy log https://app.netlify.com/sites/maturin-guide/deploys/665f273f95388d0008f5094a
😎 Deploy Preview https://deploy-preview-2098--maturin-guide.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 11, 2024

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

@dependabot dependabot bot closed this Jun 11, 2024
@dependabot dependabot bot deleted the dependabot/cargo/crates-io-26ec62dd2b branch June 11, 2024 15:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Something related to dependencies rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants