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 minor group across 1 directory with 53 updates #436

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 5, 2024

Bumps the minor group with 33 updates in the / directory:

Package From To
anyhow 1.0.91 1.0.92
serde 1.0.213 1.0.214
spider 2.10.21 2.12.7
fluvio 0.23.3 0.23.4
redb 2.1.4 2.2.0
reqwest 0.12.8 0.12.9
syn 2.0.82 2.0.87
insta 1.40.0 1.41.1
anstream 0.6.17 0.6.18
anstyle 1.0.9 1.0.10
arbitrary 1.3.2 1.4.0
aws-sigv4 1.2.4 1.2.5
aws-smithy-runtime 1.7.2 1.7.3
aws-smithy-runtime-api 1.7.2 1.7.3
bitstream-io 2.5.3 2.6.0
case_insensitive_string 0.2.5 0.2.6
cc 1.1.31 1.1.35
exr 1.72.0 1.73.0
fastdivide 0.4.1 0.4.2
fdeflate 0.3.5 0.3.6
fluvio-smartmodule 0.7.4 0.7.5
fluvio-spu-schema 0.16.0 0.16.1
fluvio-stream-dispatcher 0.13.5 0.13.6
fluvio-types 0.5.1 0.5.2
hyper-timeout 0.5.1 0.5.2
image 0.25.4 0.25.5
libm 0.2.8 0.2.11
quinn-udp 0.5.5 0.5.7
tar 0.4.42 0.4.43
thiserror 1.0.65 1.0.68
ua_generator 0.5.2 0.5.3
url 2.5.2 2.5.3
wasm-streams 0.4.1 0.4.2

Updates anyhow from 1.0.91 to 1.0.92

Release notes

Sourced from anyhow's releases.

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)
Commits

Updates serde from 1.0.213 to 1.0.214

Release notes

Sourced from serde's releases.

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)
Commits
  • 4180621 Release 1.0.214
  • 210373b Merge pull request #2568 from Mingun/into_deserializer-for-deserializers
  • 9cda015 Implement IntoDeserializer for all Deserializers in serde::de::value module
  • See full diff in compare view

Updates spider from 2.10.21 to 2.12.7

Release notes

Sourced from spider's releases.

v2.11.20

Whats Changed

Major performance improvement on crawling processing pending tasks concurrently. Now you can get all Next.js SSG pages on initial crawl for websites that do not expose links and have dynamic event listeners for routing.

  • fix loop blocking tasks
  • improve crawl performance processing tasks concurrent
  • fix page absolute link joining
  • add wait_for_dom to target element updates chrome
  • add alert polyfill blocking prevention
  • add missing chrome navigate request timeout for http future
  • add ignore assets when crawling http
  • add with_block_assets builder config for Server response non html
  • perf(chrome): add skip other resources
  • feat(page): add nextjs build ssg path handling

Full Changelog: spider-rs/spider@v2.11.0...v2.11.20

v2.10.27

Whats Changed

  • fix protocol handling valid links to crawl
  • fix subdomains and tld handling matching
  • add empty server response retry
  • add initial request status code storing
  • fix auto-encoding detection for html
  • fix openai compile and fs compile
  • add layui ui js frameworks and smartmode handling jquery
  • chore(transforms): add optional ignore tags
  • chore(budget): fix whitelist/blacklist budgeting
  • chore(smart): fix whitelist/blacklist establish
  • chore(openai): add json_schema option gpt configs

Full Changelog: spider-rs/spider@v2.10.6...v2.10.27

Commits

Updates fluvio from 0.23.3 to 0.23.4

Release notes

Sourced from fluvio's releases.

dev

Published artifacts from the latest build

Commits

Updates redb from 2.1.4 to 2.2.0

Release notes

Sourced from redb's releases.

2.2.0

  • Implement TableHandle for ReadOnlyTable
  • Fix bug in write cache, which caused pages to be evicted randomly. Pages are now evicted based on how recently they have been accessed
Changelog

Sourced from redb's changelog.

2.2.0 - 2024-10-27

  • Implement TableHandle for ReadOnlyTable
  • Fix bug in write cache, which caused pages to be evicted randomly. Pages are now evicted based on how recently they have been accessed
Commits

Updates reqwest from 0.12.8 to 0.12.9

Release notes

Sourced from reqwest's releases.

v0.12.9

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.8...v0.12.9

Changelog

Sourced from reqwest's changelog.

v0.12.9

  • Add tls::CertificateRevocationLists support.
  • Add crate features to enable webpki roots without selecting a rustls provider.
  • Fix connection_verbose() to output read logs.
  • Fix multipart::Part::file() to automatically include content-length.
  • Fix proxy to internally no longer cache system proxy settings.
Commits

Updates syn from 2.0.82 to 2.0.87

Release notes

Sourced from syn's releases.

2.0.87

2.0.86

  • Support peeking the end of a parse stream (#1689)
  • Allow parse_quote! to produce Vec<Attribute> (#1775)

2.0.85

  • Preserve extern static unsafety in ForeignItem::Verbatim (#1773)

2.0.84

2.0.83

  • Documentation improvements
Commits
  • a777cff Release 2.0.87
  • 1f103d4 Merge pull request #1779 from dtolnay/scan
  • 0986a66 Ignore enum_glob_use pedantic clippy lint
  • ca97c7d Translate expr scanner to table driven
  • 8039cb3 Test that every expr can be scanned
  • 0132c44 Make scan_expr compilable from integration test
  • 7c102c3 Extract non-full expr scanner to module
  • ceaf4d6 Merge pull request #1778 from dtolnay/exprpeek
  • a890e9d Expose can_begin_expr as Expr::peek
  • 12f068c Merge pull request #1777 from dtolnay/anygroup
  • Additional commits viewable in compare view

Updates insta from 1.40.0 to 1.41.1

Release notes

Sourced from insta's releases.

1.41.1

Release Notes

  • Re-release of 1.41.0 to generate release artifacts correctly.

Install cargo-insta 1.41.1

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/mitsuhiko/insta/releases/download/1.41.1/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.41.1

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum

1.41.0

  • Experimental support for binary snapshots. #610 (Florian Plattner)

  • --force-update-snapshots now causes cargo-insta to write every snapshot, regardless of whether snapshots fully match, and now implies --accept. This allows for --force-update-snapshots to update inline snapshots' delimiters and indentation.

    For the previous behavior of --force-update-snapshots, which limited writes to snapshots which didn't fully match, use --require-full-match. The main difference between --require-full-match and the existing behavior of --force-update-snapshots is a non-zero exit code on any snapshots which don't fully match.

    Like the previous behavior or --force-update-snapshots, --require-full-match doesn't track inline snapshots' delimiters or indentation, so can't update if those don't match. #644

  • Inline snapshots only use # characters as delimiters when required. #603

  • Warnings for undiscovered snapshots are more robust, and include files with custom snapshot extensions. #637

  • Insta runs correctly on packages which reference rust files in a parent path. #626

  • Warnings are printed when any snapshot uses a legacy format. #599

  • cargo insta --version now prints a version. #665

... (truncated)

Changelog

Sourced from insta's changelog.

1.41.1

  • Re-release of 1.41.1 to generate release artifacts correctly.

1.41.0

  • Experimental support for binary snapshots. #610 (Florian Plattner)

  • --force-update-snapshots now causes cargo-insta to write every snapshot, regardless of whether snapshots fully match, and now implies --accept. This allows for --force-update-snapshots to update inline snapshots' delimiters and indentation.

    For the previous behavior of --force-update-snapshots, which limited writes to snapshots which didn't fully match, use --require-full-match. The main difference between --require-full-match and the existing behavior of --force-update-snapshots is a non-zero exit code on any snapshots which don't fully match.

    Like the previous behavior of --force-update-snapshots, --require-full-match doesn't track inline snapshots' delimiters or indentation, so can't update if those don't match. #644

  • Inline snapshots only use # characters as delimiters when required. #603

  • Warnings for undiscovered snapshots are more robust, and include files with custom snapshot extensions. #637

  • Insta runs correctly on packages which reference rust files in a parent path. #626

  • Warnings are printed when any snapshot uses a legacy format. #599

  • cargo insta --version now prints a version. #665

  • insta now internally uses INSTA_UPDATE=force rather than INSTA_FORCE_UPDATE=1. (This doesn't affect users of cargo-insta, which handles this internally.) #482

  • cargo-insta's integration tests continue to grow over the past couple of versions, and now offer coverage of most of cargo-insta's interface.

Commits

Updates anstream from 0.6.17 to 0.6.18

Commits
  • fabe0c3 chore: Release
  • 762ca76 docs: Update changelog
  • d364ac4 Merge pull request #229 from epage/cfg
  • ad3f458 fix(stream): Respect 'test' feature
  • 0b8d105 fix(stream): Refer to correct stream on panic
  • 69cf6c9 refactor(stream): Pull out test macro body
  • c78b3c1 refactor(stream): Be extra clear that macros mod is not for use
  • ab37812 chore(deps): Update compatible (dev) (#226)
  • 7c48196 Merge pull request #227 from rust-cli/renovate/stable-1.x
  • a28405f style: Make clippy happy
  • Additional commits viewable in compare view

Updates anstyle from 1.0.9 to 1.0.10

Commits

Updates arbitrary from 1.3.2 to 1.4.0

Changelog

Sourced from arbitrary's changelog.

1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

  • Make derive(Arbitrary) work for local definitions of struct Option.

Commits
  • 5b86c44 Bump to 1.4.0
  • 1cc0e46 Merge pull request #185 from sosthene-nitrokey/wide-recursive
  • 4254bd2 Merge pull request #198 from sosthene-nitrokey/test-warnings
  • b6991ce Make MaxRecursionReached error possible to evolve in the future
  • 0f46370 Fix clippy warnings in tests
  • 365e73b Merge pull request #197 from fitzgen/doc-comment-example
  • e5897a1 Add faillible version of size_hint to properly handle recursive structures
  • ef80790 Use ? propagation in doc comment example
  • 17647a1 Merge pull request #194 from caspermeijn/derive_option
  • aa899f9 fix(derive): allow derive(Arbitrary) for struct Option
  • Additional commits viewable in compare view

Updates aws-sigv4 from 1.2.4 to 1.2.5

Commits

Updates aws-smithy-runtime from 1.7.2 to 1.7.3

Commits

Updates aws-smithy-runtime-api from 1.7.2 to 1.7.3

Commits

Updates aws-smithy-types from 1.2.8 to 1.2.9

Commits

Updates bitstream-io from 2.5.3 to 2.6.0

Commits
  • 6f01d94 Bump version to 2.6.0
  • b2ee299 Merge pull request #24 from sdroege/signed-in-out-default-impls
  • 9dac0a1 Add default impls for BitRead::read_signed_in() and BitWrite::write_signed_out()
  • See full diff in compare view

Updates case_insensitive_string from 0.2.5 to 0.2.6

Commits

Updates cc from 1.1.31 to 1.1.35

Release notes

Sourced from cc's releases.

cc-v1.1.35

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)

cc-v1.1.34

Other

  • Remove redundant flags (#1256)

cc-v1.1.33

Other

  • Reduce size of cc::Build and size of generated targets (#1257)

cc-v1.1.32

Other

  • Use rustc's knowledge of LLVM/Clang target triples (#1252)
  • Use Cargo's target information when possible (#1225)
Changelog

Sourced from cc's changelog.

1.1.35 - 2024-11-04

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)

1.1.34 - 2024-11-02

Other

  • Remove redundant flags (#1256)

1.1.33 - 2024-11-02

Other

  • Reduce size of cc::Build and size of generated targets (#1257)

1.1.32 - 2024-11-02

Other

  • Use rustc's knowledge of LLVM/Clang target triples (#1252)
  • Use Cargo's target information when possible (#1225)
Commits

Updates cssparser from 0.31.2 to 0.27.2

Commits
  • 7c9854e Auto merge of #267 - servo:bump-smallvec, r=emilio
  • ef8162e Auto merge of #269 - servo:nll, r=SimonSapin
  • cfd59ca Clean up a bit now that lifetimes are non-lexical.
  • efc1b25 Bump smallvec to 1.0, release new minor version (0.27.2)
  • 65d6c3e Auto merge of #265 - servo:those-without-syn, r=nox
  • d4af92c Simplify the implementation of ascii_case_insensitive_phf_map
  • 610cc22 Add support for attributes on match arms in match_ignore_ascii_case!
  • 5188d5e Auto merge of #264 - servo:those-without-syn, r=nox
  • ff98a34 Remove support for the heapsize crate
  • 4c36354 Fix using the match_ignore_ascii_case macro inside another macro expansion
  • Additional commits viewable in compare view

Updates exr from 1.72.0 to 1.73.0

Commits

Updates fastdivide from 0.4.1 to 0.4.2

Commits

Updates fdeflate from 0.3.5 to 0.3.6

Changelog

Sourced from fdeflate's changelog.

0.3.6

This release improves end-to-end decoding peformance for PNG images by 10% on average, with select images benefitting by as much as 50%. These improvements were inspired by the algorithms in zune-inflate.

  • Optimized building the Huffman table, which helps the performance of small images (#31)
  • Dropped the specialized fast path for a hardcoded Huffman table, which is no longer necessary (#32)
  • Add a fast path to the DEFLATE decoding loop that processes more bytes at a time, benefitting performance on large images (#34)
  • Re-add test files into the crates.io tarball since they are so small. They may be removed in the future if they grow in size (#35)

#31: image-rs/fdeflate#31 #32: image-rs/fdeflate#32 #34: image-rs/fdeflate#34 #35: image-rs/fdeflate#35

Commits

Updates fluvio-smartmodule from 0.7.4 to 0.7.5

Release notes

Sourced from fluvio-smartmodule's releases.

dev

Published artifacts from the latest build

Commits

Updates fluvio-smartmodule-derive from 0.6.3 to 0.6.4

Release notes

Sourced from fluvio-smartmodule-derive's releases.

dev

Published artifacts from the latest build

Commits

Updates fluvio-spu-schema from 0.16.0 to 0.16.1

Release notes

Sourced from fluvio-spu-schema's releases.

dev

Published artifacts from the latest build

Commits

Updates fluvio-stream-dispatcher from 0.13.5 to 0.13.6

Release notes

Sourced from fluvio-stream-dispatcher's releases.

dev

Published artifacts from the latest build

Commits

Updates fluvio-types from 0.5.1 to 0.5.2

Release notes

Sourced from fluvio-types's releases.

dev

Published artifacts from the latest build

Commits

Updates getrandom from 0.2.15 to 0.1.16

Changelog

Sourced from getrandom's changelog.

[0.2.15] - 2024-05-06

Added

  • Apple visionOS support #410

Changed

  • Use libc::getrandom on DragonflyBSD, FreeBSD, illumos, and Solaris #411 #416 #417 #420
  • Unify libc::getentropy-based implementations #418

#410: rust-random/getrandom#410 #411: rust-random/getrandom#411 #416: rust-random/getrandom#416 #417: rust-random/getrandom#417 #418: rust-random/getrandom#418 #420: rust-random/getrandom#420

[0.2.14] - 2024-04-08

Fixed

  • Enable /dev/urandom fallback for MUSL-based Linux targets #408

#408: rust-random/getrandom#408

[0.2.13] - 2024-04-06

Added

  • linux_disable_fallback crate feature to disable /dev/urandom-based fallback on Linux and Android targets. Enabling this feature bumps minimum supported Linux kernel version to 3.17 and Android API level to 23 (Marshmallow). #396

Changed

  • Disable /dev/urandom fallback for Linux targets outside of the following target_arches: aarch64, arm, powerpc, powerpc64, s390x, x86, x86_64 #396
  • Do not catch EPERM error code on Android while checking availability of the getrandom syscall #396

#396: rust-random/getrandom#396

[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

... (truncated)

Commits

Updates hyper-timeout from 0.5.1 to 0.5.2

Commits
  • 5cfb2b6 Release 0.5.2
  • 7346290 chore: prevent warnings from test-only functions and traits
  • 87f8d89 chore: add test to prove timeout
  • 8ecd5e5 fix: clippy warnings
  • c129b36 Add 'set_reset_reader_on_write' function to TimeoutStream. This will optional...
  • See full diff in compare view

Updates hyper-util from 0.1.9 to 0.1.10

Release notes

Sourced from hyper-util's releases.

v0.1.10

What's Changed

  • Add http2_max_header_list_size(num) option to legacy client builder.
  • Add set_tcp_user_timeout(dur) option to legacy HttpConnector.

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.9...v0.1.10

Changelog

Sourced from hyper-util's changelog.

0.1.10 (2024-10-28)

  • Add http2_max_header_list_size(num) option to legacy client builder.
  • Add set_tcp_user_timeout(dur) option to legacy HttpConnector.
Commits
  • a636037 v0.1.10
  • 05b13f4 chore: Fix test warning (#155)
  • 30f38c8 feat(client): Expose http2::builder::max_header_list_size in the client bui...
  • aa90ce5 refactor: allow resolve span to be disabled (#153)
  • 4dda024 feat(client): Add a new config to set TCP_USER_TIMEOUT (#152)
  • See full diff in compare view

Updates image from 0.25.4 to 0.25.5

Changelog

Sourced from image's changelog.

Version 0.25.5

Features:

  • Added support for decoding 10-bit and 12-bit AVIF
  • Initial, opt-in serde support for an enum. This may be extended to other types in the future.

Bug fixes:

  • Multiple bug fixes in AVIF decoding
  • The rayon feature now correctly toggles the use of rayon when encoding AVIF. (Previously it would be either always on or always off depending on the version of the ravif crate in your dependency tree.)
  • "jfif" file extension for JPEG images is now recognized
Commits

Bumps the minor group with 33 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.91` | `1.0.92` |
| [serde](https://github.com/serde-rs/serde) | `1.0.213` | `1.0.214` |
| [spider](https://github.com/spider-rs/spider) | `2.10.21` | `2.12.7` |
| [fluvio](https://github.com/infinyon/fluvio) | `0.23.3` | `0.23.4` |
| [redb](https://github.com/cberner/redb) | `2.1.4` | `2.2.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.8` | `0.12.9` |
| [syn](https://github.com/dtolnay/syn) | `2.0.82` | `2.0.87` |
| [insta](https://github.com/mitsuhiko/insta) | `1.40.0` | `1.41.1` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.17` | `0.6.18` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.9` | `1.0.10` |
| [arbitrary](https://github.com/rust-fuzz/arbitrary) | `1.3.2` | `1.4.0` |
| [aws-sigv4](https://github.com/smithy-lang/smithy-rs) | `1.2.4` | `1.2.5` |
| [aws-smithy-runtime](https://github.com/smithy-lang/smithy-rs) | `1.7.2` | `1.7.3` |
| [aws-smithy-runtime-api](https://github.com/smithy-lang/smithy-rs) | `1.7.2` | `1.7.3` |
| [bitstream-io](https://github.com/tuffy/bitstream-io) | `2.5.3` | `2.6.0` |
| [case_insensitive_string](https://github.com/spider-rs/case_insensitive_string) | `0.2.5` | `0.2.6` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.31` | `1.1.35` |
| [exr](https://github.com/johannesvollmer/exrs) | `1.72.0` | `1.73.0` |
| [fastdivide](https://github.com/fulmicoton/fastdivide) | `0.4.1` | `0.4.2` |
| [fdeflate](https://github.com/image-rs/fdeflate) | `0.3.5` | `0.3.6` |
| [fluvio-smartmodule](https://github.com/infinyon/fluvio) | `0.7.4` | `0.7.5` |
| [fluvio-spu-schema](https://github.com/infinyon/fluvio) | `0.16.0` | `0.16.1` |
| [fluvio-stream-dispatcher](https://github.com/infinyon/fluvio) | `0.13.5` | `0.13.6` |
| [fluvio-types](https://github.com/infinyon/fluvio) | `0.5.1` | `0.5.2` |
| [hyper-timeout](https://github.com/hjr3/hyper-timeout) | `0.5.1` | `0.5.2` |
| [image](https://github.com/image-rs/image) | `0.25.4` | `0.25.5` |
| [libm](https://github.com/rust-lang/libm) | `0.2.8` | `0.2.11` |
| [quinn-udp](https://github.com/quinn-rs/quinn) | `0.5.5` | `0.5.7` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.42` | `0.4.43` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.65` | `1.0.68` |
| [ua_generator](https://github.com/a11ywatch/ua_generator) | `0.5.2` | `0.5.3` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.3` |
| [wasm-streams](https://github.com/MattiasBuelens/wasm-streams) | `0.4.1` | `0.4.2` |



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

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

Updates `spider` from 2.10.21 to 2.12.7
- [Release notes](https://github.com/spider-rs/spider/releases)
- [Changelog](https://github.com/spider-rs/spider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/spider-rs/spider/commits)

Updates `fluvio` from 0.23.3 to 0.23.4
- [Release notes](https://github.com/infinyon/fluvio/releases)
- [Changelog](https://github.com/infinyon/fluvio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/infinyon/fluvio/commits)

Updates `redb` from 2.1.4 to 2.2.0
- [Release notes](https://github.com/cberner/redb/releases)
- [Changelog](https://github.com/cberner/redb/blob/master/CHANGELOG.md)
- [Commits](cberner/redb@v2.1.4...v2.2.0)

Updates `reqwest` from 0.12.8 to 0.12.9
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.8...v0.12.9)

Updates `syn` from 2.0.82 to 2.0.87
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.82...2.0.87)

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

Updates `anstream` from 0.6.17 to 0.6.18
- [Commits](rust-cli/anstyle@anstream-v0.6.17...anstream-v0.6.18)

Updates `anstyle` from 1.0.9 to 1.0.10
- [Commits](rust-cli/anstyle@v1.0.9...v1.0.10)

Updates `arbitrary` from 1.3.2 to 1.4.0
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.0)

Updates `aws-sigv4` from 1.2.4 to 1.2.5
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-smithy-runtime` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-smithy-runtime-api` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-smithy-types` from 1.2.8 to 1.2.9
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `bitstream-io` from 2.5.3 to 2.6.0
- [Commits](tuffy/bitstream-io@v2.5.3...v2.6.0)

Updates `case_insensitive_string` from 0.2.5 to 0.2.6
- [Commits](https://github.com/spider-rs/case_insensitive_string/commits)

Updates `cc` from 1.1.31 to 1.1.35
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.1.31...cc-v1.1.35)

Updates `cssparser` from 0.31.2 to 0.27.2
- [Commits](servo/rust-cssparser@v0.31.2...v0.27.2)

Updates `exr` from 1.72.0 to 1.73.0
- [Release notes](https://github.com/johannesvollmer/exrs/releases)
- [Commits](https://github.com/johannesvollmer/exrs/commits)

Updates `fastdivide` from 0.4.1 to 0.4.2
- [Commits](https://github.com/fulmicoton/fastdivide/commits)

Updates `fdeflate` from 0.3.5 to 0.3.6
- [Changelog](https://github.com/image-rs/fdeflate/blob/main/CHANGES.md)
- [Commits](image-rs/fdeflate@v0.3.5...v0.3.6)

Updates `fluvio-smartmodule` from 0.7.4 to 0.7.5
- [Release notes](https://github.com/infinyon/fluvio/releases)
- [Changelog](https://github.com/infinyon/fluvio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/infinyon/fluvio/commits)

Updates `fluvio-smartmodule-derive` from 0.6.3 to 0.6.4
- [Release notes](https://github.com/infinyon/fluvio/releases)
- [Changelog](https://github.com/infinyon/fluvio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/infinyon/fluvio/commits)

Updates `fluvio-spu-schema` from 0.16.0 to 0.16.1
- [Release notes](https://github.com/infinyon/fluvio/releases)
- [Changelog](https://github.com/infinyon/fluvio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/infinyon/fluvio/commits)

Updates `fluvio-stream-dispatcher` from 0.13.5 to 0.13.6
- [Release notes](https://github.com/infinyon/fluvio/releases)
- [Changelog](https://github.com/infinyon/fluvio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/infinyon/fluvio/commits)

Updates `fluvio-types` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/infinyon/fluvio/releases)
- [Changelog](https://github.com/infinyon/fluvio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/infinyon/fluvio/commits)

Updates `getrandom` from 0.2.15 to 0.1.16
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.15...v0.1.16)

Updates `hyper-timeout` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/hjr3/hyper-timeout/releases)
- [Commits](hjr3/hyper-timeout@0.5.1...0.5.2)

Updates `hyper-util` from 0.1.9 to 0.1.10
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.9...v0.1.10)

Updates `image` from 0.25.4 to 0.25.5
- [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md)
- [Commits](image-rs/image@v0.25.4...v0.25.5)

Updates `itoa` from 1.0.11 to 0.4.8
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.11...0.4.8)

Updates `libm` from 0.2.8 to 0.2.11
- [Release notes](https://github.com/rust-lang/libm/releases)
- [Changelog](https://github.com/rust-lang/libm/blob/master/CHANGELOG.md)
- [Commits](rust-lang/libm@0.2.8...libm-v0.2.11)

Updates `miniz_oxide` from 0.7.4 to 0.8.0
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.7.4...0.8.0)

Updates `phf` from 0.10.1 to 0.8.0
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/master/RELEASE_PROCESS.md)
- [Commits](rust-phf/rust-phf@v0.10.1...v0.8.0)

Updates `phf_codegen` from 0.10.0 to 0.8.0
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/master/RELEASE_PROCESS.md)
- [Commits](rust-phf/rust-phf@v0.10.0...v0.8.0)

Updates `phf_generator` from 0.10.0 to 0.8.0
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/master/RELEASE_PROCESS.md)
- [Commits](rust-phf/rust-phf@v0.10.0...v0.8.0)

Updates `phf_macros` from 0.10.0 to 0.8.0
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/master/RELEASE_PROCESS.md)
- [Commits](rust-phf/rust-phf@v0.10.0...v0.8.0)

Updates `phf_shared` from 0.10.0 to 0.8.0
- [Release notes](https://github.com/rust-phf/rust-phf/releases)
- [Changelog](https://github.com/rust-phf/rust-phf/blob/master/RELEASE_PROCESS.md)
- [Commits](rust-phf/rust-phf@v0.10.0...v0.8.0)

Updates `quinn-udp` from 0.5.5 to 0.5.7
- [Release notes](https://github.com/quinn-rs/quinn/releases)
- [Commits](quinn-rs/quinn@quinn-udp-0.5.5...quinn-udp-0.5.7)

Updates `rand` from 0.8.5 to 0.7.3
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.7.3)

Updates `rand_chacha` from 0.3.1 to 0.2.2
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@rand_chacha-0.3.1...rand_chacha-0.2.2)

Updates `rand_core` from 0.6.4 to 0.5.1
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@rand_core-0.6.4...rand_core-0.5.1)

Updates `selectors` from 0.25.0 to 0.22.0
- [Commits](https://github.com/servo/stylo/commits)

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

Updates `servo_arc` from 0.3.0 to 0.1.1
- [Commits](https://github.com/servo/stylo/commits)

Updates `tar` from 0.4.42 to 0.4.43
- [Commits](alexcrichton/tar-rs@0.4.42...0.4.43)

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

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

Updates `ua_generator` from 0.5.2 to 0.5.3
- [Commits](https://github.com/a11ywatch/ua_generator/commits)

Updates `url` from 2.5.2 to 2.5.3
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.2...v2.5.3)

Updates `wasi` from 0.11.0+wasi-snapshot-preview1 to 0.9.0+wasi-snapshot-preview1
- [Commits](https://github.com/bytecodealliance/wasi-rs/commits)

Updates `wasm-streams` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/MattiasBuelens/wasm-streams/releases)
- [Changelog](https://github.com/MattiasBuelens/wasm-streams/blob/main/CHANGELOG.md)
- [Commits](MattiasBuelens/wasm-streams@v0.4.1...v0.4.2)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: spider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: fluvio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: redb
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: anstream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: anstyle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: arbitrary
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: aws-sigv4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: aws-smithy-runtime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: aws-smithy-runtime-api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: aws-smithy-types
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bitstream-io
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: case_insensitive_string
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: cssparser
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: exr
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: fastdivide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fdeflate
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fluvio-smartmodule
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fluvio-smartmodule-derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fluvio-spu-schema
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fluvio-stream-dispatcher
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fluvio-types
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: getrandom
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: hyper-timeout
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: hyper-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: image
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: itoa
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: minor
- dependency-name: libm
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: phf
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: phf_codegen
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: phf_generator
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: phf_macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: phf_shared
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: quinn-udp
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rand
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rand_chacha
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rand_core
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: selectors
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: servo_arc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tar
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: ua_generator
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: url
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: wasi
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: wasm-streams
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 5, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 6, 2024

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

@dependabot dependabot bot closed this Nov 6, 2024
@dependabot dependabot bot deleted the dependabot/cargo/minor-f43586a71f branch November 6, 2024 07:19
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