Skip to content

Conversation

dependabot[bot]
Copy link

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

Bumps the cargo-deps group with 24 updates in the / directory:

Package From To
bucket-common-types 5ee25d3 332a12c
zxcvbn 2.2.2 3.0.1
uuid 1.7.0 1.8.0
url 2.5.0 2.5.2
thiserror 1.0.58 1.0.61
bitflags 2.4.2 2.5.0
highway 1.1.0 1.2.0
prost 0.12.3 0.12.6
prost-types 0.12.3 0.12.6
anyhow 1.0.81 1.0.86
base64 0.22.0 0.22.1
serde 1.0.197 1.0.203
bytemuck 1.15.0 1.16.1
zeroize 1.7.0 1.8.1
async-trait 0.1.77 0.1.80
cookie 0.18.0 0.18.1
rust_decimal 1.34.3 1.35.0
jsonwebtoken 9.2.0 9.3.0
brotli 3.4.0 6.0.0
time 0.3.34 0.3.36
infer 0.15.0 0.16.0
dash-mpd 0.15.0 0.16.1
serial_test 3.0.0 3.1.1
trybuild 1.0.90 1.0.96

Updates bucket-common-types from 5ee25d3 to 332a12c

Commits

Updates zxcvbn from 2.2.2 to 3.0.1

Changelog

Sourced from zxcvbn's changelog.

Version 3.0.1

  • Fix a bug in 3.0.0 where the Score enum was private
  • Fix a bug where some structs that were intended to implement Serialize when the ser feature was enabled did not implement it

Version 3.0.0

  • [Breaking] Avoid the possibility for zxcvbn to error
  • [Breaking] Refactor the score into an exhaustive enum
  • [Breaking] Change feedback to return Option<&Feedback>
  • Bump itertools dependency to 0.13

Version 2.2.2

  • Fix a possible panic in spatial pattern checker (shssoichiro/zxcvbn-rs#70)
  • Update several dependencies
  • Fix several new clippy lints
  • Officially specify minimum Rust version requirement
    • The version has not changed, but the requirement has now been added to Cargo.toml

Version 2.2.1

  • Fixes for building on WASM targets

Version 2.2.0

  • Fix an issue where a less specific feedback would be given when a more specific feedback was available. (shssoichiro/zxcvbn-rs#54)
  • Migrate to Rust edition 2021
  • Migrate from chrono crate to time crate
  • Update fancy-regex to 0.8

Version 2.1.1

  • Do not download and build wasm dependencies if not building for wasm

Version 2.1.0

  • [Feature] Add support for wasm
  • Deprecate the usage of builders (it will still work for now, but will be removed in the next major release)
  • Various performance improvements and dependency upgrades

Version 2.0.1

  • Fix overflow bugs that may cause wrong results on very complex passwords
  • Fix a panic that could occur on passwords with multibyte unicode characters
  • Update derive_builder to 0.9

Version 2.0.0

... (truncated)

Commits

Updates uuid from 1.7.0 to 1.8.0

Release notes

Sourced from uuid's releases.

1.8.0

⚠️ Potential Breakage ⚠️

A new impl AsRef<Uuid> for Uuid bound has been added, which can break inference on code like:

let b = uuid.as_ref();

You can fix these by explicitly typing the result of the conversion:

let b: &[u8] = uuid.as_ref();

or by calling as_bytes instead:

let b = uuid.as_bytes();

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.7.0...1.8.0

Commits
  • 0f2aaae Merge pull request #747 from uuid-rs/cargo/1.8.0
  • 01d16c3 prepare for 1.8.0 release
  • e4746bc Merge pull request #745 from uuid-rs/ci/outdated
  • d0396ad Merge pull request #746 from uuid-rs/chore/draft-link
  • 9415ed4 Merge pull request #743 from koshell/main
  • 951e8e3 Merge pull request #738 from rerun-io/emilk/wasm-bindgen-only-on-web
  • 101aa84 add v6 to v8 draft link to README
  • 84dcbba run outdated on a schedule
  • ca952b1 add a workflow for running cargo outdated
  • abe995a Make the toml longer, more complicated, and functional
  • Additional commits viewable in compare view

Updates url from 2.5.0 to 2.5.2

Commits

Updates thiserror from 1.0.58 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)
Commits

Updates bitflags from 2.4.2 to 2.5.0

Release notes

Sourced from bitflags's releases.

2.5.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.4.2...2.5.0

Changelog

Sourced from bitflags's changelog.

2.5.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.4.2...2.5.0

Commits
  • e5ff0ca Merge pull request #401 from KodrAus/cargo/2.5.0
  • 4b51e1d prepare for 2.5.0 release
  • 6965e84 Merge pull request #400 from KodrAus/feat/parser-modes
  • 6eaed0b support truncating or strict-named variants of parsing and formatting
  • e2c8409 Merge pull request #398 from tgross35/patch-1
  • 73dc066 Derive Debug for Flag\<B>
  • See full diff in compare view

Updates highway from 1.1.0 to 1.2.0

Changelog

Sourced from highway's changelog.

v1.2.0 - 2024-06-21

  • x86 SSE implementation now provably can't panic
  • HighwayHasher debug representation now exhaustive
  • Removed all unsafe Wasm SIMD implementation at no cost
Commits
  • fd36b1e Release 1.2.0
  • 21d0236 Update changelog to latest
  • 2c52ba1 Merge pull request #85 from nickbabcock/bench
  • d12061a Update benchmarks to latest
  • 6a60349 Clippy pedantic formatting
  • b716913 Merge pull request #84 from nickbabcock/wasm-safe
  • a238883 Remove unsafe from wasm SIMD implementation
  • 0e9c2c2 Merge pull request #83 from nickbabcock/actions
  • e7b4fa1 Update to non-deprecated github actions
  • 6bfad17 Merge pull request #82 from nickbabcock/highway-debug
  • Additional commits viewable in compare view

Updates prost from 0.12.3 to 0.12.6

Commits

Updates prost-types from 0.12.3 to 0.12.6

Commits

Updates anyhow from 1.0.81 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
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 base64 from 0.22.0 to 0.22.1

Changelog

Sourced from base64's changelog.

0.22.1

  • Correct the symbols used for the predefined alphabet::BIN_HEX.
Commits
  • e144006 v0.22.1
  • 64cca59 Merge pull request #271 from JobanSD/patch-1
  • 838355e Correct BinHex 4.0 alphabet according to specifications
  • bf15ccf Merge pull request #270 from marshallpierce/mp/clippy
  • fc6aabe Appease clippy
  • 9a518a2 Merge pull request #267 from bdura/patch-1
  • d96c80f Merge branch 'marshallpierce:master' into patch-1
  • e8e4a22 docs: fix trailing ``` in mod.rs example
  • 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 bytemuck from 1.15.0 to 1.16.1

Changelog

Sourced from bytemuck's changelog.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.

1.16.0

  • Adds a const_zeroed feature (MSRV 1.75) which puts a zeroed fn at the crate root. This is just like the Zeroable::zeroed method, but as a const fn.
Commits

Updates zeroize from 1.7.0 to 1.8.1

Commits

Updates async-trait from 0.1.77 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)

0.1.79

  • Clean up some dead code

0.1.78

  • Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up (#260)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • 1eb21ed Release 0.1.79
  • 82cb95c Resolve unused field of ReplaceSelf syntax tree visitor
  • Additional commits viewable in compare view

Updates cookie from 0.18.0 to 0.18.1

Changelog

Sourced from cookie's changelog.

Version 0.18.1 (Mar 25, 2024)

New Features

  • Added support for the draft Partitioned attribute.

    The new CookieBuilder::partition(), Cookie::partitioned(), and Cookie::set_partitioned() methods allow enabling and/or disabling the attribute. Additionally, the attribute is recognized during parsing.

  • Added CookieBuilder::removal(), counterpart to Cookie::make_removal().

Commits

Updates rust_decimal from 1.34.3 to 1.35.0

Release notes

Sourced from rust_decimal's releases.

1.35.0

What's Changed

New Contributors

Full Changelog: paupino/rust-decimal@1.34.3...1.35.0

Changelog

Sourced from rust_decimal's changelog.

1.35.0

Fixed

  • Fixes an issue where reading from Postgres may cause a panic instead of raising an Error (#653)

Changed

  • Reduces PostgreSQL import dependencies by only requiring the common postgres-types crate. (#651)

Credit

Thank you to @​the-kenny for your contribution!

Commits

Updates jsonwebtoken from 9.2.0 to 9.3.0

Changelog

Sourced from jsonwebtoken's changelog.

9.3.0 (2024-03-12)

  • Add Validation.reject_tokens_expiring_in_less_than, the opposite of leeway
Commits

Updates brotli from 3.4.0 to 6.0.0

Commits
  • 8e0b2a8 fix CI
  • bf3db20 Minor hq.rs cleanup
  • 10083bf Cleanup BlockSplitIterator
  • f53535a Remove dead code
  • d1f356c Remove unused corrosion code
  • f8f5840 Refactor encode::set_parameter
  • f1dad22 Use proper self for Command and related
  • 2c601f4 Release 5.0.0 with ffi-api disabled by default to avoid ODR issues
  • 6c4cd18 Make hex numbers more readable
  • 2ff7b21 Use proper self for BrotliEncoderStateStruct
  • Additional commits viewable in compare view

Updates time from 0.3.34 to 0.3.36

Release notes

Sourced from time's releases.

v0.3.36

See the changelog for details.

v0.3.35

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.36 [2024-04-10]

# Fixed

  • FormatItem can be used as part of an import path. See #675 for details.

#675: time-rs/time#675

0.3.35 [2024-04-10]

Added

  • Duration::checked_neg
  • ext::InstantExt, which provides methods for using time::Duration with std::time::Instant

Changed

  • Instant is deprecated. It is recommended to use std::time::Instant directly, importing time::ext::InstantExt for interoperability with time::Duration.
  • FormatItem has been renamed to BorrowedFormatItem, avoiding confusion with OwnedFormatItem. An alias has been added for backwards compatibility.

Fixed

  • The weekday is optional when parsing RFC2822.
  • The range of sub-second values in Duration is documented correctly. The previous documentation contained an off-by-one error.
  • Leap seconds are now correctly handled when parsing ISO 8601.
Commits
  • 3c3c546 pub use instead of pub type re-exporting
  • 266178d Update code coverage CI
  • 131049e v0.3.35 release
  • 9c15ee3 Permit leap seconds when parsing ISO 8601
  • d279d8d Fix invalid offset hour diagnostic test
  • f04a28f Eliminate unreachable branch
  • 06a096d Rename FormatItem to BorrowedFormatItem
  • fd664ee Include diagnostics regression
  • b8d09a7 Address nightly lints
  • 330865a Update deny.toml
  • Additional commits viewable in compare view

Updates infer from 0.15.0 to 0.16.0

Release notes

Sourced from infer's releases.

v0.16.0

Changelog

v0.16.0 - 2024-05-31

Build

  • 66c1890 update crate version

Features

  • aa9a9d1 add support for DjVu image format

Commits

  • 66c1890 update crate version
  • 1006136 Merge pull request #94 from rramphal/feat/djvu
  • aa9a9d1 add support for DjVu image format
Commits

Updates dash-mpd from 0.15.0 to 0.16.1

Changelog

Sourced from dash-mpd's changelog.

[0.16.1] - 2024-04-15

  • Network requests for media fragments that fail are retried a certain number of times. The number of retries for each fragment request can be set using the fragment_retry_count method on DashDownloader (default is 10). Network errors that are identified as being transient (for example, network timeouts) do not count towards this retry count. Network requests were previously retried only if they were identified as transient, but anecdotally it seems that the internet and CDN servers are not set up in a way that allows transient errors reliably to be distinguished from non-transient errors. Non-transient retries still count towards the max_error_count, whose default value is increased to 30.

[0.16.0] - 2024-03-30

  • New error types NetworkTimeout and NetworkConnect in DashMpdError. These error types would previously have been reported as the Network error type. This is an API incompatible change.

  • Error messages include additional contextual information (they are formatted using Debug instead of Display). For example, a network connection error caused by a TLS configuration error will include information on the underlying issue.

  • The ContentProtection.clearkey:Laurl element, containing information on the license acquisition URL, is superseded by the ContentProtection.dashif:laurl element. We parse the former to an field (re)named clearkey_laurl and the latter to the field laurl in ContentProtection elements. Some manifests in the wild use both of these names, and we can't parse both into a Vec due to a parser limitation when using aliases. This is an API incompatible change. Reported by @​pando-emil.

  • The trust-dns build feature has been renamed to hickory-dns following the same rename in the reqwest crate, which was triggered by the change in name of the Hickory DNS resolver. The old name is still supported, but is deprecated.

Commits
  • ad85e90 Prepare for v0.16.1 release
  • be1e58d Retry failing network requests
  • 0ab84c3 CI: apparently macos-13 host not yet working for non-paying users
  • 928d362 Update anyhow crate
  • 5dad8c2 Merge pull request #62 from emarsden/dependabot/cargo/ffprobe-0.4.0
  • 513e424 Update ffprobe requirement from 0.3.3 to 0.4.0

Bumps the cargo-deps group with 24 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bucket-common-types](https://github.com/Tim-Leon/bucket-common-types) | ``5ee25d3`` | ``332a12c`` |
| [zxcvbn](https://github.com/shssoichiro/zxcvbn-rs) | `2.2.2` | `3.0.1` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.7.0` | `1.8.0` |
| [url](https://github.com/servo/rust-url) | `2.5.0` | `2.5.2` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.58` | `1.0.61` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.4.2` | `2.5.0` |
| [highway](https://github.com/nickbabcock/highway-rs) | `1.1.0` | `1.2.0` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.3` | `0.12.6` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.12.3` | `0.12.6` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.81` | `1.0.86` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.22.0` | `0.22.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.203` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.15.0` | `1.16.1` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.7.0` | `1.8.1` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.77` | `0.1.80` |
| [cookie](https://github.com/SergioBenitez/cookie-rs) | `0.18.0` | `0.18.1` |
| [rust_decimal](https://github.com/paupino/rust-decimal) | `1.34.3` | `1.35.0` |
| [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `9.2.0` | `9.3.0` |
| [brotli](https://github.com/dropbox/rust-brotli) | `3.4.0` | `6.0.0` |
| [time](https://github.com/time-rs/time) | `0.3.34` | `0.3.36` |
| [infer](https://github.com/bojand/infer) | `0.15.0` | `0.16.0` |
| [dash-mpd](https://github.com/emarsden/dash-mpd-rs) | `0.15.0` | `0.16.1` |
| [serial_test](https://github.com/palfrey/serial_test) | `3.0.0` | `3.1.1` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.90` | `1.0.96` |



Updates `bucket-common-types` from `5ee25d3` to `332a12c`
- [Commits](Tim-Leon/bucket-common-types@5ee25d3...332a12c)

Updates `zxcvbn` from 2.2.2 to 3.0.1
- [Changelog](https://github.com/shssoichiro/zxcvbn-rs/blob/master/CHANGELOG.md)
- [Commits](shssoichiro/zxcvbn-rs@v2.2.2...v3.0.1)

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

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

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

Updates `bitflags` from 2.4.2 to 2.5.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.4.2...2.5.0)

Updates `highway` from 1.1.0 to 1.2.0
- [Changelog](https://github.com/nickbabcock/highway-rs/blob/master/CHANGELOG.md)
- [Commits](nickbabcock/highway-rs@v1.1.0...v1.2.0)

Updates `prost` from 0.12.3 to 0.12.6
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.3...v0.12.6)

Updates `prost-types` from 0.12.3 to 0.12.6
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.3...v0.12.6)

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

Updates `base64` from 0.22.0 to 0.22.1
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.22.0...v0.22.1)

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 `bytemuck` from 1.15.0 to 1.16.1
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.15.0...v1.16.1)

Updates `zeroize` from 1.7.0 to 1.8.1
- [Commits](RustCrypto/utils@zeroize-v1.7.0...zeroize-v1.8.1)

Updates `async-trait` from 0.1.77 to 0.1.80
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.77...0.1.80)

Updates `cookie` from 0.18.0 to 0.18.1
- [Changelog](https://github.com/rwf2/cookie-rs/blob/master/CHANGELOG.md)
- [Commits](rwf2/cookie-rs@0.18.0...0.18.1)

Updates `rust_decimal` from 1.34.3 to 1.35.0
- [Release notes](https://github.com/paupino/rust-decimal/releases)
- [Changelog](https://github.com/paupino/rust-decimal/blob/master/CHANGELOG.md)
- [Commits](paupino/rust-decimal@1.34.3...1.35.0)

Updates `jsonwebtoken` from 9.2.0 to 9.3.0
- [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](Keats/jsonwebtoken@v9.2.0...v9.3.0)

Updates `brotli` from 3.4.0 to 6.0.0
- [Release notes](https://github.com/dropbox/rust-brotli/releases)
- [Commits](dropbox/rust-brotli@3.4.0...6.0.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 `infer` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/bojand/infer/releases)
- [Commits](bojand/infer@v0.15.0...v0.16.0)

Updates `dash-mpd` from 0.15.0 to 0.16.1
- [Changelog](https://github.com/emarsden/dash-mpd-rs/blob/main/CHANGELOG.md)
- [Commits](emarsden/dash-mpd-rs@v0.15.0...v0.16.1)

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

Updates `serial_test` from 3.0.0 to 3.1.1
- [Release notes](https://github.com/palfrey/serial_test/releases)
- [Commits](palfrey/serial_test@v3.0.0...v3.1.1)

Updates `trybuild` from 1.0.90 to 1.0.96
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.90...1.0.96)

---
updated-dependencies:
- dependency-name: bucket-common-types
  dependency-type: direct:production
  dependency-group: cargo-deps
- dependency-name: zxcvbn
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-deps
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: highway
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: zeroize
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: cookie
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: rust_decimal
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: jsonwebtoken
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: brotli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-deps
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: infer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: dash-mpd
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: serial_test
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: trybuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants