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 cargo group across 1 directory with 15 updates #1

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

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

Package From To
tauri 1.2.4 1.2.5
time 0.3.17 0.3.26
regex 1.7.1 1.9.4
sqlx 0.6.2 0.7.3
tokio 1.25.0 1.26.0
bumpalo 3.12.0 3.16.0
crossbeam-utils 0.8.14 0.8.21
enumflags2 0.7.5 0.7.10
h2 0.3.15 0.3.26
mio 0.8.5 0.8.11
openssl 0.10.45 0.10.68
thread_local 1.1.4 1.1.8
whoami 1.3.0 1.5.2

Updates tauri from 1.2.4 to 1.2.5

Commits
  • 53a34a8 chore: trigger release
  • 961cec9 chore: remove println
  • 2227abb fix(core): IPC remote domain check bypassed by isolation iframe usage (#6691)
  • 9c0593c feat(core): block remote URLs from accessing the IPC
  • ca45fdb update publish-cli-js.yml
  • 309aad7 fix(ci): dispatcher for cli.js/cli.rs publish workflow
  • 318802e chore(ci): remove package filter
  • See full diff in compare view

Updates time from 0.3.17 to 0.3.26

Release notes

Sourced from time's releases.

v0.3.26

See the changelog for details.

v0.3.25

See the changelog for details.

v0.3.24

See the changelog for details.

v0.3.23

See the changelog for details.

v0.3.22

See the changelog for details.

v0.3.21

See the changelog for details.

v0.3.20

See the changelog for details.

v0.3.19

See the changelog for details.

v0.3.18

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.26 [2023-08-18]

This release contains only a single change. serde is required to be a version prior to 1.0.171. This is due to the decision by the maintainer of serde to include pre-built binaries that are executed without the end user's knowledge. As of the time of publishing, the included binary has not even been reproduced. This is a security risk, and the time project strongly opposes this decision. While this may break some users' builds due to conflicting versions, it is a necessary step to ensure the security.

0.3.25 [2023-08-02]

Fixed

  • Methods such as Time::replace_milliseconds would panic on some out-of-range values. This has been fixed.

0.3.24 [2023-07-30]

Added

  • The subsecond component is taken into account when parsing the unix_timestamp component. If data is conflicting, the subsecond value takes precedence.
  • Parsing a Time with only the hour component is now supported. The minute and second, and subsecond components are assumed to be zero.

Changed

  • The minimum supported Rust version is now 1.67.0.
  • The debug output for Parsed has been improved.
  • When parsing, invalid values are now rejected sooner. Previously, the entire input would be parsed before being rejected in the final step. Now, invalid values are rejected as soon as they are encountered. This affects the error variant returned, which may cause minor breakage for any code (incorrectly) relying on the exact error variant.
  • When parsing a Time, an error is returned if components are present but not consecutive. For example, if hours and seconds are present, minutes will not be assumed to be zero.

Fixed

  • The implementation of Duration::checked_div could return a slightly incorrect result in some cases. This has been fixed.

0.3.23 [2023-07-08]

Added

  • Date::next_occurrence
  • Date::prev_occurrence
  • Date::nth_next_occurrence
  • Date::nth_prev_occurrence
  • Weekday::nth_prev

... (truncated)

Commits
  • 500f8e4 Remove support for serde with pre-built binaries
  • a98fe2d v0.3.25 release
  • b74ebe8 Use new feature of deranged
  • d671910 Avoid panicking on out-of-range value
  • cdc85da v0.3.24 release
  • 227b6f8 Gate methods as necessary
  • 8060100 Fix implementation of Duration::checked_div
  • a9fea9f Use ranged integers internally for Duration
  • 04936ee Use ensure_ranged! for UtcOffset
  • 7e95cb2 Use ranged integers internally for Time
  • Additional commits viewable in compare view

Updates regex from 1.7.1 to 1.9.4

Changelog

Sourced from regex's changelog.

1.9.4 (2023-08-26)

This is a patch release that fixes a bug where RegexSet::is_match(..) could incorrectly return false (even when RegexSet::matches(..).matched_any() returns true).

Bug fixes:

1.9.3 (2023-08-05)

This is a patch release that fixes a bug where some searches could result in incorrect match offsets being reported. It is difficult to characterize the types of regexes susceptible to this bug. They generally involve patterns that contain no prefix or suffix literals, but have an inner literal along with a regex prefix that can conditionally match.

Bug fixes:

  • [BUG #1060](rust-lang/regex#1060): Fix a bug with the reverse inner literal optimization reporting incorrect match offsets.

1.9.2 (2023-08-05)

This is a patch release that fixes another memory usage regression. This particular regression occurred only when using a RegexSet. In some cases, much more heap memory (by one or two orders of magnitude) was allocated than in versions prior to 1.9.0.

Bug fixes:

1.9.1 (2023-07-07)

This is a patch release which fixes a memory usage regression. In the regex 1.9 release, one of the internal engines used a more aggressive allocation strategy than what was done previously. This patch release reverts to the prior on-demand strategy.

Bug fixes:

... (truncated)

Commits
  • f39ab4d 1.9.4
  • 3f15f1c deps: bump regex-syntax and regex-automata versions
  • 89b452a regex-automata-0.3.7
  • 990979b regex-syntax-0.7.5
  • e008f83 changelog: 1.9.4
  • c788378 ci: drop mips, add powerpc and s390x
  • de03399 automata: fix incorrect use of Aho-Corasick's "standard" semantics
  • 7536e05 syntax: remove superfluous borrow
  • 81e328a doc: fix typo in module-level doc
  • 10faa44 doc: fix a couple typos
  • Additional commits viewable in compare view

Updates sqlx from 0.6.2 to 0.7.3

Changelog

Sourced from sqlx's changelog.

0.7.3 - 2023-11-22

38 pull requests were merged this release cycle.

Added

Changed

Fixed

... (truncated)

Commits

Updates tokio from 1.25.0 to 1.26.0

Release notes

Sourced from tokio's releases.

Tokio v1.26.0

Fixed

Added

Changed

Internal Changes

Unstable

Documented

... (truncated)

Commits

Updates bumpalo from 3.12.0 to 3.16.0

Changelog

Sourced from bumpalo's changelog.

3.16.0

Released 2024-04-08.

Added

  • Added an optional, off-by-default dependency on the serde crate. Enabling this dependency allows you to serialize Bumpalo's collection and box types. Deserialization is not implemented, due to constraints of the deserialization trait.

3.15.4

Released 2024-03-07.

Added

  • Added the bumpalo::collections::Vec::extend_from_slices_copy method, which is a faster way to extend a vec from multiple slices when the element is Copy than calling extend_from_slice_copy N times.

3.15.3

Released 2024-02-22.

Added

  • Added additional performance improvements to bumpalo::collections::Vec related to reserving capacity.

3.15.2

Released 2024-02-21.

Added

  • Add a bumpalo::collections::Vec::extend_from_slice_copy method. This doesn't exist on the standard library's Vec but they have access to specialization, so their regular extend_from_slice has a specialization for Copy types. Using this new method for Copy types is a ~80x performance improvement over the plain extend_from_slice method.

... (truncated)

Commits
  • 4eeab88 Bump to version 3.16.0
  • d746a56 add serde serialization support (#210)
  • 49c5a71 Bump to version 3.15.4
  • 6a91333 Adds Vec::extend_from_slices_copy that accepts multiple slices (#240)
  • 2ed8718 Bump to 3.15.3
  • 1803cca Modifies RawVec reserve fn structure to improve inlining (#239)
  • 2ffdfb3 Bump to version 3.15.2
  • 54c88f0 Provides implementation of Vec::extend_from_slice optimized for T: Copy (...
  • f8597ce Fix MSRV in Cargo.toml; bump to version 3.15.1
  • bb660a3 Bump to version 3.15.0
  • Additional commits viewable in compare view

Updates crossbeam-utils from 0.8.14 to 0.8.21

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.21

  • Improve implementation of CachePadded. (#1152)

crossbeam-utils 0.8.20

  • Implement Display for CachePadded. (#1097)

crossbeam-utils 0.8.19

  • Remove dependency on cfg-if. (#1072)

crossbeam-utils 0.8.18

  • Relax the minimum supported Rust version to 1.60. (#1056)
  • Improve scalability of AtomicCell fallback. (#1055)

crossbeam-utils 0.8.17

  • Bump the minimum supported Rust version to 1.61. (#1037)
  • Improve support for targets without atomic CAS or 64-bit atomic. (#1037)
  • Always implement UnwindSafe and RefUnwindSafe for AtomicCell. (#1045)
  • Improve compatibility with Miri, TSan, and loom. (#995, #1003)
  • Improve compatibility with unstable oom=panic. (#1045)
  • Improve implementation of CachePadded. (#1014, #1025)
  • Update loom dependency to 0.7.

crossbeam-utils 0.8.16

  • Improve implementation of CachePadded. (#967)

crossbeam-utils 0.8.15

  • Add #[clippy::has_significant_drop] to ShardedLock{Read,Write}Guard. (#958)
  • Improve handling of very large timeout. (#953)
  • Soft-deprecate thread::scope() in favor of the more efficient std::thread::scope that stabilized on Rust 1.63. (#954)
Commits
  • ccd83ac Prepare for the next release
  • 54988eb Calculate layout in const context
  • 761d0b6 Port #1146 & #1147 to deque::Injector and queue::SegQueue
  • 8144fbb Remove optimistic spinning from Context::wait_until
  • a92f6c4 Bump peter-evans/create-pull-request from 5 to 7 (#1153)
  • 66d41a9 channel: Add new_biased constructor for biased channel selection (#1150)
  • d0d0a80 CachePadded: Use 128-byte alignment on arm64ec
  • f757eef Add comment about fixed rustc bug
  • 71d8bb0 ci: Update minimum tested Rust version to 1.63
  • 5092a9b ci: Clean up no_atomic.sh
  • Additional commits viewable in compare view

Updates enumflags2 from 0.7.5 to 0.7.10

Release notes

Sourced from enumflags2's releases.

Release 0.7.10

  • Fix a case where the #[bitflags] macro would access the crate through enumflags2::... instead of ::enumflags2::.... This makes the generated code more robust and avoids triggering the unused_qualifications lint. (#58)
  • Rework the proc-macro to use syn with the derive feature (as opposed to full). This reduces the cargo build time for enumflags2 by about 20%.

Release 0.7.9

  • The BitFlag trait now includes convenience re-exports for the constructors of BitFlags. This lets you do MyFlag::from_bits instead BitFlags::<MyFlag>::from_bits where the type of the flag cannot be inferred from context (thanks @​ronnodas).
  • The documentation now calls out the fact that the implementation of PartialOrd may not be what you expect (reported by @​ronnodas).

Release 0.7.8

  • New API: BitFlags::set. Sets the value of a specific flag to that of the bool passed as argument. (thanks, @​m4dh0rs3)
  • BitFlags now implements PartialOrd and Ord, to make it possible to use it as a key in a BTreeMap.
  • The bounds on the implementation of Hash got improved, so that it is possible to use it in code generic over T: BitFlag.

Release 0.7.7

This release fixes a soundness issue in the make_bitflags! macro. Previously, code like this was accepted:

#[bitflags]
#[repr(u8)]
#[derive(Copy, Clone, Debug)]
enum Test {
    A = 1,
    B = 2,
}
impl Test {
const C: u8 = 69;
}
fn main() {
let x = make_bitflags!(Test::{C});
}

Iterating over x would then create values of Test with bit patterns that don't correspond to any of the variants, which is undefined behavior.

This bug has been introduced in 0.7.0, together with the make_bitflags! macro itself.

I don't think it is likely that this was actually present in anyone's code, but in an abundance of caution, I have yanked all affected versions.

This issue has been assigned RUSTSEC-2023-0035.

Release 0.7.6

  • Update to syn 2.0 (thanks to @​mwkmwkmwk)
  • Bump MSRV to 1.56.0 to support the above
  • Update crate metadata to compensate for gender drift :3
Commits
  • 8205d5b Release 0.7.10
  • 1c78f09 Run clippy with only the declared syn features
  • 561fe5e Emit a proper error if bitflags enum is generic
  • f3bb174 Avoid depending on syn's full feature flag
  • e01808b Always use absolute paths in generated proc macro code
  • f08cd33 Specify the Rust edition for the whole test package
  • 73b1469 Remove redundant import
  • 1dab769 Last minute docs addition for the potentially confusing PartialOrd
  • b5621c2 Release 0.7.9
  • ca1f26e Add examples to BitFlags::from_bits*
  • Additional commits viewable in compare view

Updates h2 from 0.3.15 to 0.3.26

Release notes

Sourced from h2's releases.

v0.3.26

What's Changed

  • Limit number of CONTINUATION frames for misbehaving connections.

See https://seanmonstar.com/blog/hyper-http2-continuation-flood/ for more info.

v0.3.25

What's Changed

Full Changelog: hyperium/h2@v0.3.24...v0.3.25

v0.3.24

Fixed

  • Limit error resets for misbehaving connections.

v0.3.23

What's Changed

v0.3.22

What's Changed

  • Add header_table_size(usize) option to client and server builders.
  • Improve throughput when vectored IO is not available.
  • Update indexmap to 2.

New Contributors

v0.3.21

What's Changed

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

New Contributors

v0.3.20

Bug Fixes

... (truncated)

Changelog

Sourced from h2's changelog.

0.3.26 (April 3, 2024)

  • Limit number of CONTINUATION frames for misbehaving connections.

0.3.25 (March 15, 2024)

  • Improve performance decoding many headers.

0.3.24 (January 17, 2024)

  • Limit error resets for misbehaving connections.

0.3.23 (January 10, 2024)

  • Backport fix from 0.4.1 for stream capacity assignment.

0.3.22 (November 15, 2023)

  • Add header_table_size(usize) option to client and server builders.
  • Improve throughput when vectored IO is not available.
  • Update indexmap to 2.

0.3.21 (August 21, 2023)

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

0.3.20 (June 26, 2023)

  • Fix panic if a server received a request with a :status pseudo header in the 1xx range.
  • Fix panic if a reset stream had pending push promises that were more than allowed.
  • Fix potential flow control overflow by subtraction, instead returning a connection error.

0.3.19 (May 12, 2023)

  • Fix counting reset streams when triggered by a GOAWAY.
  • Send too_many_resets in opaque debug data of GOAWAY when too many resets received.

0.3.18 (April 17, 2023)

  • Fix panic because of opposite check in is_remote_local().

0.3.17 (April 13, 2023)

  • Add Error::is_library() method to check if the originated inside h2.
  • Add max_pending_accept_reset_streams(usize) option to client and server builders.
  • Fix theoretical memory growth when receiving too many HEADERS and then RST_STREAM frames faster than an application can accept them off the queue.

... (truncated)

Commits

Updates libsqlite3-sys from 0.24.2 to 0.27.0

Release notes

Sourced from libsqlite3-sys's releases.

0.27.0

What's Changed

  • Fix documentation typo for rollback_hook #1051
  • Remove lazy_static dependency for vtab #1063
  • Sync series with official source by #1064
  • Enable modern-full feature for docs.rs #1066
  • Fix markdown rendering of Connection::transaction doc #1067
  • Add ToSql/FromSql for [u8; N] #1069
  • Upgrade bundled SQLCipher to 4.5.0 #1073
  • Clean up unlock_notify code a bit #1077
  • Use caching in our CI #1078
  • Enable buildtime_bindgen tests on windows CI #1090
  • Replace Gitter with Discord #1079, #1091
  • Use stable rust for doc checking in CI #1092
  • Exclude some configuration files from package #1093
  • Remove the SQLite version check #1094
  • Move Limits enum from libsqlite3-sys into rusqlite #1096
  • Uncomment config::DbConfig::SQLITE_DBCONFIG_RESET_DATABASE #1113
  • Upgrade SQLite bundled version to 3.38.0 #1124, #1127

Full Changelog: rusqlite/rusqlite@v0.26.3...v0.27.0

0.26.0

Nice to have: make possible to remove authorizer hook

  • Add bundle-sqlcipher and bundle-ssl #860
  • Breaking changes: Add support for authorizer hook #946 / #975 Action is not visible from root anymore
  • Add a function to return the path of a Connection #963 / #962
  • Add a helper function for getting the byte data from a ValueRef, regardless of if its Text or Blob #983
  • Make the empty placeholder params be Send + Sync #1005
  • Use a generic ToSql param in pragma functions #1009
  • Breaking changes: Implement AsRef<Statement> for Row(s) #887 Rows::column* and Row::column* removed now that you have access to underlying statement.
  • Fix FromSql impl for OffsetDateTime #970
    • Upgrade time crate to version 0.3.0
  • Bump bundled sqlite3 version to 3.36.0 #979
  • Allow static linking against the VC runtime #1021
  • Breaking changes: Make load_extension unsafe #1016
  • Add as_type_or_null to ValueRef #1012
  • Correct pkg-config version #960
  • Improve VTab API: Iterate on both index constraint and usage #1001 / #1006
  • Access to sqlite3_db_cacheflush via Connection #984 / #985
  • Retrieve error message from database connection handle #988
  • Include the session FFI in the bundled bindings #982
  • Use #[doc(cfg)] instead of manually indicating feature = "blah" in the comments #835 / #973
  • Use env::var instead of cfg in some cases in build.rs #961
  • Add time back to modern-full feature #969
  • Fix InnerConnection decode_result / changes #974 / #931
  • Upgrage bindgen to version 0.59 #994

... (truncated)

Commits
  • d67c0e0 Remove the SQLite version check
  • 9cbe5a5 Move Limits enum from libsqlite3-sys into rusqlite
  • 0f33b12 Merge pull request #1093 from gwenn/exclude
  • 2d37c2d Exclude some configuration files from package
  • d4539b4 Remove old script publish-ghp-docs.sh
  • 44bab06 Rename the fullTest cache key to fullBuild in CI, and document it
  • f445987 Use stable rust for doc checking in CI
  • 325e4c8 Fix discord link
  • 91648d7 Merge pull request #1086 from gwenn/ptr_as_ptr
  • cc4f059 Merge remote-tracking branch 'origin/master' into ptr_as_ptr
  • Additional commits viewable in compare view

Updates mio from 0.8.5 to 0.8.11

Changelog

Sourced from mio's changelog.

0.8.11

0.8.10

Added

0.8.9

Added

Fixed

0.8.8

Fixed

0.8.7

Added

  • Add/fix support for tvOS and watchOS, Mio should now build for tvOS and

... (truncated)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [tauri](https://github.com/tauri-apps/tauri) | `1.2.4` | `1.2.5` |
| [time](https://github.com/time-rs/time) | `0.3.17` | `0.3.26` |
| [regex](https://github.com/rust-lang/regex) | `1.7.1` | `1.9.4` |
| [sqlx](https://github.com/launchbadge/sqlx) | `0.6.2` | `0.7.3` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.25.0` | `1.26.0` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.12.0` | `3.16.0` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.14` | `0.8.21` |
| [enumflags2](https://github.com/meithecatte/enumflags2) | `0.7.5` | `0.7.10` |
| [h2](https://github.com/hyperium/h2) | `0.3.15` | `0.3.26` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.5` | `0.8.11` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.45` | `0.10.68` |
| [thread_local](https://github.com/Amanieu/thread_local-rs) | `1.1.4` | `1.1.8` |
| [whoami](https://github.com/ardaku/whoami) | `1.3.0` | `1.5.2` |



Updates `tauri` from 1.2.4 to 1.2.5
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-v1.2.4...tauri-v1.2.5)

Updates `time` from 0.3.17 to 0.3.26
- [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.17...v0.3.26)

Updates `regex` from 1.7.1 to 1.9.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.7.1...1.9.4)

Updates `sqlx` from 0.6.2 to 0.7.3
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md)
- [Commits](launchbadge/sqlx@v0.6.2...v0.7.3)

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

Updates `bumpalo` from 3.12.0 to 3.16.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.12.0...3.16.0)

Updates `crossbeam-utils` from 0.8.14 to 0.8.21
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.14...crossbeam-utils-0.8.21)

Updates `enumflags2` from 0.7.5 to 0.7.10
- [Release notes](https://github.com/meithecatte/enumflags2/releases)
- [Commits](meithecatte/enumflags2@v0.7.5...v0.7.10)

Updates `h2` from 0.3.15 to 0.3.26
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/v0.3.26/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.15...v0.3.26)

Updates `libsqlite3-sys` from 0.24.2 to 0.27.0
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@libsqlite3-sys-0.24.2...v0.27.0)

Updates `mio` from 0.8.5 to 0.8.11
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v0.8.5...v0.8.11)

Updates `openssl` from 0.10.45 to 0.10.68
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-v0.10.45...openssl-v0.10.68)

Updates `rsa` from 0.6.1 to 0.9.7
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.7/CHANGELOG.md)
- [Commits](https://github.com/RustCrypto/RSA/commits/v0.9.7)

Updates `thread_local` from 1.1.4 to 1.1.8
- [Commits](Amanieu/thread_local-rs@1.1.4...1.1.8)

Updates `whoami` from 1.3.0 to 1.5.2
- [Changelog](https://github.com/ardaku/whoami/blob/v1/CHANGELOG.md)
- [Commits](ardaku/whoami@v1.3.0...v1.5.2)

---
updated-dependencies:
- dependency-name: tauri
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: time
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: regex
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: sqlx
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: tokio
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: crossbeam-utils
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: enumflags2
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: h2
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: libsqlite3-sys
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: mio
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: openssl
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rsa
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: thread_local
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: whoami
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 23, 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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants