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: Bump the dev-dependencies group with 20 updates #230

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 20, 2023

Bumps the dev-dependencies group with 20 updates:

Package From To
async-trait 0.1.73 0.1.74
prost 0.12.1 0.12.2
prost-types 0.12.1 0.12.2
tokio 1.32.0 1.34.0
tokio-util 0.7.8 0.7.10
tonic 0.10.0 0.10.2
tonic-reflection 0.10.0 0.10.2
tracing 0.1.37 0.1.40
tracing-subscriber 0.3.17 0.3.18
futures 0.3.28 0.3.29
uuid 1.4.1 1.6.1
tonic-build 0.10.0 0.10.2
regex 1.9.5 1.10.2
serde 1.0.188 1.0.192
serde_json 1.0.107 1.0.108
tempfile 3.8.0 3.8.1
base64 0.21.4 0.21.5
reqwest 0.11.20 0.11.22
env_logger 0.10.0 0.10.1
test-log 0.2.12 0.2.13

Updates async-trait from 0.1.73 to 0.1.74

Release notes

Sourced from async-trait's releases.

0.1.74

  • Documentation improvements
Commits
  • 265979b Release 0.1.74
  • 5e67709 Fix doc test when async fn in trait is natively supported
  • ef144ae Update ui test suite to nightly-2023-10-15
  • 9398a28 Test docs.rs documentation build in CI
  • 8737173 Update ui test suite to nightly-2023-09-24
  • 5ba643c Test dyn Trait containing async fn
  • 247c8e7 Add ui test testing the recommendation to use async-trait
  • 799db66 Update ui test suite to nightly-2023-09-23
  • 0e60248 Update actions/checkout@v3 -> v4
  • 7fcbc83 Update ui test suite to nightly-2023-08-29
  • See full diff in compare view

Updates prost from 0.12.1 to 0.12.2

Commits

Updates prost-types from 0.12.1 to 0.12.2

Commits

Updates tokio from 1.32.0 to 1.34.0

Release notes

Sourced from tokio's releases.

Tokio v1.34.0

Fixed

  • io: allow clear_readiness after io driver shutdown (#6067)
  • io: fix integer overflow in take (#6080)
  • io: fix I/O resource hang (#6134)
  • sync: fix broadcast::channel link (#6100)

Changed

  • macros: use ::core qualified imports instead of ::std inside tokio::test macro (#5973)

Added

  • fs: update cfg attr in fs::read_dir to include aix (#6075)
  • sync: add mpsc::Receiver::recv_many (#6010)
  • tokio: added vita target support (#6094)

#5973: tokio-rs/tokio#5973 #6067: tokio-rs/tokio#6067 #6080: tokio-rs/tokio#6080 #6134: tokio-rs/tokio#6134 #6100: tokio-rs/tokio#6100 #6075: tokio-rs/tokio#6075 #6010: tokio-rs/tokio#6010 #6094: tokio-rs/tokio#6094

Tokio v1.33.0

1.33.0 (October 9, 2023)

Fixed

  • io: mark Interest::add with #[must_use] (#6037)
  • runtime: fix cache line size for RISC-V (#5994)
  • sync: prevent lock poisoning in watch::Receiver::wait_for (#6021)
  • task: fix spawn_local source location (#5984)

Changed

  • sync: use Acquire/Release orderings instead of SeqCst in watch (#6018)

Added

  • fs: add vectored writes to tokio::fs::File (#5958)
  • io: add Interest::remove method (#5906)
  • io: add vectored writes to DuplexStream (#5985)
  • net: add Apple tvOS support (#6045)
  • sync: add ?Sized bound to {MutexGuard,OwnedMutexGuard}::map (#5997)
  • sync: add watch::Receiver::mark_unseen (#5962, #6014, #6017)
  • sync: add watch::Sender::new (#5998)

... (truncated)

Commits

Updates tokio-util from 0.7.8 to 0.7.10

Commits

Updates tonic from 0.10.0 to 0.10.2

Changelog

Sourced from tonic's changelog.

0.10.2 (2023-09-28)

Bug Fixes

  • web: Client decoding incomplete buffer bug (#1540) (83e363a)

0.10.1 (2023-09-21)

Bug Fixes

Commits

Updates tonic-reflection from 0.10.0 to 0.10.2

Changelog

Sourced from tonic-reflection's changelog.

0.10.2 (2023-09-28)

Bug Fixes

  • web: Client decoding incomplete buffer bug (#1540) (83e363a)

0.10.1 (2023-09-21)

Bug Fixes

Commits

Updates tracing from 0.1.37 to 0.1.40

Release notes

Sourced from tracing's releases.

tracing 0.1.40

This release fixes a potential stack use-after-free in the Instrument::into_inner method. Only uses of this method are affected by this bug.

Fixed

  • Use mem::ManuallyDrop instead of mem::forget in Instrument::into_inner (#2765)

#2765: tokio-rs/tracing#2765

Thanks to @​cramertj and @​manishearth for finding and fixing this issue!

tracing 0.1.39

This release adds several additional features to the tracing macros. In addition, it updates the tracing-core dependency to [v0.1.32][core-0.1.32] and the tracing-attributes dependency to [v0.1.27][attrs-0.1.27].

Added

  • Allow constant field names in macros (#2617)
  • Allow setting event names in macros (#2699)
  • core: Allow ValueSets of any length (#2508)

Changed

  • tracing-attributes: updated to [0.1.27][attrs-0.1.27]
  • tracing-core: updated to [0.1.32][core-0.1.32]
  • attributes: Bump minimum version of proc-macro2 to 1.0.60 (#2732)
  • attributes: Generate less dead code for async block return type hint (#2709)

Fixed

  • Use fully qualified names in macros for items exported from std prelude (#2621, #2757)
  • attributes: Allow [clippy::let_with_type_underscore] in macro-generated code (#2609)
  • attributes: Allow unknown_lints in macro-generated code (#2626)
  • attributes: Fix a compilation error in #[instrument] when the "log" feature is enabled (#2599)

Documented

  • Add axum-insights to relevant crates. (#2713)
  • Fix link to RAI pattern crate documentation (#2612)
  • Fix docs typos and warnings (#2581)
  • Add clippy-tracing to related crates (#2628)
  • Add tracing-cloudwatch to related crates (#2667)
  • Fix deadlink to tracing-etw repo (#2602)

... (truncated)

Commits

Updates tracing-subscriber from 0.3.17 to 0.3.18

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.18

This release of tracing-subscriber adds support for the NO_COLOR environment variable (an informal standard to disable emitting ANSI color escape codes) in fmt::Layer, reintroduces support for the chrono crate, and increases the minimum supported Rust version (MSRV) to Rust 1.63.0.

It also introduces several minor API improvements.

Added

  • chrono: Add chrono implementations of FormatTime (#2690)
  • subscriber: Add support for the NO_COLOR environment variable in fmt::Layer (#2647)
  • fmt: make format::Writer::new() public (#2680)
  • filter: Implement layer::Filter for Option<Filter> (#2407)

Changed

  • log: bump version of tracing-log to 0.2 (#2772)
  • Increased minimum supported Rust version (MSRV) to 1.63.0+.

#2690: tokio-rs/tracing#2690 #2647: tokio-rs/tracing#2647 #2680: tokio-rs/tracing#2680 #2407: tokio-rs/tracing#2407 #2772: tokio-rs/tracing#2772

Thanks to @​shayne-fletcher, @​dmlary, @​kaifastromai, and @​jsgf for contributing!

Commits

Updates futures from 0.3.28 to 0.3.29

Release notes

Sourced from futures's releases.

0.3.29

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)
Changelog

Sourced from futures's changelog.

0.3.29 - 2023-10-26

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)
Commits
  • 86f2a6a Release 0.3.29
  • a40204d Provide AtomicWaker if portable-atomic feature is enabled, even if atomic CAS...
  • 24cca65 Add TryAny adapter
  • e60a439 Add TryAll adapter
  • 5051335 Remove unsafe code from AssertUnmoved
  • 60a86e1 Fix Sync impl of FuturesUnordered
  • f392082 Extend io::AsyncBufReadExt::lines example with invalid UTF-8
  • 2f2ec39 Fix infinite loop caused by invalid UTF-8 bytes
  • 8570ea6 Fix unused_imports warning
  • 43c0c5f Add tests for StreamExt::all and StreamExt::any
  • Additional commits viewable in compare view

Updates uuid from 1.4.1 to 1.6.1

Release notes

Sourced from uuid's releases.

1.6.1

What's Changed

Full Changelog: uuid-rs/uuid@1.6.0...1.6.1

1.6.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.5.0...1.6.0

1.5.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.4.1...1.5.0

Commits
  • c889107 Merge pull request #721 from uuid-rs/fix/uuid-macro
  • f3f7496 fix uuid macro in consts
  • 4609e61 Merge pull request #719 from uuid-rs/cargo/1.6.0
  • 2433066 prepare for 1.6.0 release
  • 9787ea1 Merge pull request #718 from uuid-rs/feat/stabilize-v6-plus
  • 90b0bc0 Merge pull request #714 from metalalive/doc/fix-v6-links
  • 1eebe7d bump msrv to 1.60.0
  • 6bade3a just test lib with miri
  • 3df0aaa stabilize UUIDv6-v8 support
  • 003dc57 doc: fix links to timestamp module
  • Additional commits viewable in compare view

Updates tonic-build from 0.10.0 to 0.10.2

Changelog

Sourced from tonic-build's changelog.

0.10.2 (2023-09-28)

Bug Fixes

  • web: Client decoding incomplete buffer bug (#1540) (83e363a)

0.10.1 (2023-09-21)

Bug Fixes

Commits

Updates regex from 1.9.5 to 1.10.2

Changelog

Sourced from regex's changelog.

1.10.2 (2023-10-16)

This is a new patch release that fixes a search regression where incorrect matches could be reported.

Bug fixes:

1.10.1 (2023-10-14)

This is a new patch release with a minor increase in the number of valid patterns and a broadening of some literal optimizations.

New features:

  • FEATURE 04f5d7be: Loosen ASCII-compatible rules such that regexes like (?-u:☃) are now allowed.

Performance improvements:

  • PERF 8a8d599f: Broader the reverse suffix optimization to apply in more cases.

1.10.0 (2023-10-09)

This is a new minor release of regex that adds support for start and end word boundary assertions. That is, \< and \>. The minimum supported Rust version has also been raised to 1.65, which was released about one year ago.

The new word boundary assertions are:

  • \< or \b{start}: a Unicode start-of-word boundary (\W|\A on the left, \w on the right).
  • \> or \b{end}: a Unicode end-of-word boundary (\w on the left, \W|\z on the right)).
  • \b{start-half}: half of a Unicode start-of-word boundary (\W|\A on the left).
  • \b{end-half}: half of a Unicode end-of-word boundary (\W|\z on the right).

The \< and \> are GNU extensions to POSIX regexes. They have been added to the regex crate because they enjoy somewhat broad support in other regex engines as well (for example, vim). The \b{start} and \b{end} assertions are aliases for \< and \>, respectively.

The \b{start-half} and \b{end-half} assertions are not found in any

... (truncated)

Commits
  • 5f1f1c8 1.10.2
  • 1a54a82 deps: bump regex-automata to 0.4.3
  • 61242b1 regex-automata-0.4.3
  • 50fe7d1 changelog: 1.10.2
  • eb950f6 automata/meta: revert broadening of reverse suffix optimization
  • e7bd19d regex-lite-0.1.5
  • 0086dec lite: fix stack overflow test
  • 4ae1472 tests: fix compilation of doctests on 32-bit architectures
  • cd79881 regex-lite-0.1.4
  • 466e42c lite: fix stack overflow in NFA compiler
  • Additional commits viewable in compare view

Updates serde from 1.0.188 to 1.0.192

Release notes

Sourced from serde's releases.

v1.0.192

v1.0.191

  • Documentation improvements

v1.0.190

  • Preserve NaN sign when deserializing f32 from f64 or vice versa (#2637)

v1.0.189

  • Fix "cannot infer type" error when internally tagged enum contains untagged variant (#2613, thanks @​ahl)
Commits
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • 59892e7 Release 1.0.191
  • 97dd07a Merge pull request #2647 from dtolnay/doccfg
  • c8bc97c Document "rc" and "unstable" features on docs.rs
  • 9dacfbb Fill in more doc(cfg) attributes
  • 05c2509 Relocate cfg attrs into deref_impl
  • 64f949b Relocate cfg attrs into parse_ip_impl and parse_socket_impl
  • 3f339de Relocate cfg attrs into seq_impl and map_impl
  • 215c2b7 Relocate cfg attrs into forwarded_impl macro
  • Additional commits viewable in compare view

Updates serde_json from 1.0.107 to 1.0.108

Release notes

Sourced from serde_json's releases.

v1.0.108

Commits

Updates tempfile from 3.8.0 to 3.8.1

Changelog

Sourced from tempfile's changelog.

3.8.1

  • Update rustix to fix a potential panic on persist_noclobber on android.
  • Update redox_syscall to 0.4 (on redox).
  • Fix some docs typos.
Commits

Updates base64 from 0.21.4 to 0.21.5

Changelog

Sourced from base64's changelog.

0.21.5

  • Add Debug and Clone impls for the general purpose Engine
Commits
  • 7f81baf v0.21.5
  • 95dda57 Merge pull request #255 from marshallpierce/mp/debug
  • bda313a Add Debug and Clone to general purpose Engine
  • 53a8737 Merge pull request #254 from marshallpierce/mp/ci-all-targets
  • c423b6e CI for all targets w/o default features
  • 9eaf503 Merge pull request #253 from kpreid/features-and-build
  • 04451fb Allow cargo test to complete under any set of features.
  • 2ee1a00 no_std import simplification.
  • See full diff in compare view

Updates reqwest from 0.11.20 to 0.11.22

Release notes

Sourced from reqwest's releases.

v0.11.21

What's Changed

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.

New Contributors

Changelog

Sourced from reqwest's changelog.

v0.11.22

  • Fix compilation on Windows when trust-dns is enabled.

v0.11.21

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.
Commits

Updates env_logger from 0.10.0 to 0.10.1

Changelog

Sourced from env_logger's changelog.

[0.10.1] - 2023-11-10

Commits
  • 36623f5 chore: Release env_logger version 0.10.1
  • 8a033d8 chore: Fix packaging
  • 9df7e6c Merge pull request #241 from ChrisDenton/simple-insert
  • 46ccdd9 perf: Replace HashMap with a Vec
  • bdc96a4 Merge pull request #249 from atouchet/v10
  • 983837c Update links and remove broken badge
  • dcd220d Update listed version number
  • 36b1508 Merge pull request #260 from y-yagi/2018-edition
  • 6f64347 Merge pull request #282 from epage/syntax
  • b297357 chore: Update docs and examples to 2018 edition
  • Additional commits viewable in compare view

Updates test-log from 0.2.12 to 0.2.13

Release notes

Sourced from test-log's releases.

v0.2.13

  • Improved interaction with nested attributes (such as those used by the test_case crate), that may not have been parsable in the past
  • Removed generated test_impl function, which could have "leaked" into test cases (#28)
  • Eliminated dependency on tracingDescription has been truncated

Bumps the dev-dependencies group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.73` | `0.1.74` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.1` | `0.12.2` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.12.1` | `0.12.2` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.32.0` | `1.34.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.8` | `0.7.10` |
| [tonic](https://github.com/hyperium/tonic) | `0.10.0` | `0.10.2` |
| [tonic-reflection](https://github.com/hyperium/tonic) | `0.10.0` | `0.10.2` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.37` | `0.1.40` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.6.1` |
| [tonic-build](https://github.com/hyperium/tonic) | `0.10.0` | `0.10.2` |
| [regex](https://github.com/rust-lang/regex) | `1.9.5` | `1.10.2` |
| [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.192` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.20` | `0.11.22` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` |
| [test-log](https://github.com/d-e-s-o/test-log) | `0.2.12` | `0.2.13` |


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

Updates `prost` from 0.12.1 to 0.12.2
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.1...v0.12.2)

Updates `prost-types` from 0.12.1 to 0.12.2
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.1...v0.12.2)

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

Updates `tokio-util` from 0.7.8 to 0.7.10
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/commits)

Updates `tonic` from 0.10.0 to 0.10.2
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.10.0...v0.10.2)

Updates `tonic-reflection` from 0.10.0 to 0.10.2
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.10.0...v0.10.2)

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

Updates `tracing-subscriber` from 0.3.17 to 0.3.18
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.17...tracing-subscriber-0.3.18)

Updates `futures` from 0.3.28 to 0.3.29
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.28...0.3.29)

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

Updates `tonic-build` from 0.10.0 to 0.10.2
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.10.0...v0.10.2)

Updates `regex` from 1.9.5 to 1.10.2
- [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.9.5...1.10.2)

Updates `serde` from 1.0.188 to 1.0.192
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.188...v1.0.192)

Updates `serde_json` from 1.0.107 to 1.0.108
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.107...v1.0.108)

Updates `tempfile` from 3.8.0 to 3.8.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Stebalien/tempfile/commits)

Updates `base64` from 0.21.4 to 0.21.5
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.4...v0.21.5)

Updates `reqwest` from 0.11.20 to 0.11.22
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.20...v0.11.22)

Updates `env_logger` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.10.1)

Updates `test-log` from 0.2.12 to 0.2.13
- [Release notes](https://github.com/d-e-s-o/test-log/releases)
- [Changelog](https://github.com/d-e-s-o/test-log/blob/main/CHANGELOG.md)
- [Commits](d-e-s-o/test-log@v0.2.12...v0.2.13)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tonic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tonic-reflection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: tonic-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: test-log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 20, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 27, 2023

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

@dependabot dependabot bot closed this Nov 27, 2023
@dependabot dependabot bot deleted the dependabot/cargo/dev-dependencies-12ecba1d94 branch November 27, 2023 20:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants