Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the mycelium group across 1 directory with 16 updates #535

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

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the mycelium group with 16 updates in the / directory:

Package From To
tokio 1.41.1 1.42.0
tokio-util 0.7.12 0.7.13
serde 1.0.215 1.0.217
bytes 1.8.0 1.9.0
tracing 0.1.40 0.1.41
tracing-subscriber 0.3.18 0.3.19
tokio-stream 0.1.16 0.1.17
blake3 1.5.4 1.5.5
quinn 0.11.5 0.11.6
rustls 0.23.16 0.23.20
rcgen 0.13.1 0.13.2
tokio-tun 0.12.1 0.13.0
libc 0.2.162 0.2.169
thiserror 1.0.65 2.0.9
axum 0.7.7 0.7.9
serde_json 1.0.132 1.0.134

Updates tokio from 1.41.1 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#6791)
  • time: fix a typo in Instant docs (#6982)

#6791: tokio-rs/tokio#6791 #6929: tokio-rs/tokio#6929 #6966: tokio-rs/tokio#6966 #6967: tokio-rs/tokio#6967 #6982: tokio-rs/tokio#6982 #6999: tokio-rs/tokio#6999

Commits

Updates tokio-util from 0.7.12 to 0.7.13

Commits
  • 0b31c2f chore: prepare tokio-util v0.7.13 (#7012)
  • 129f9fc codec: fix incorrect handling of invalid utf-8 in LinesCodec::decode_eof (#...
  • b5c227d tracing: move tracing instrumentation tests into tokio tests (#7007)
  • dcae2b9 ci: unfreeze FreeBSD from rustc 1.81 (#7009)
  • bb9d570 chore: prepare Tokio v1.42.0 (#7005)
  • af9c683 tests: fix typo in build test instructions (#7004)
  • 4bc5a1a ci: allow Unicode-3.0 license for unicode-ident (#7006)
  • f8948ea runtime: do not defer yield_now inside block_in_place (#6999)
  • bce9780 time: use array::from_fn instead of manually creating array (#7000)
  • 38151f3 readme: unlist 1.32.x as LTS release (#6997)
  • Additional commits viewable in compare view

Updates serde from 1.0.215 to 1.0.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • Additional commits viewable in compare view

Updates bytes from 1.8.0 to 1.9.0

Release notes

Sourced from bytes's releases.

Bytes v1.9.0

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

  • Replace BufMut::put with BufMut::put_slice in Writer impl (#745)
  • Rename hex_impl! to fmt_impl! and reuse it for fmt::Debug (#743)
Changelog

Sourced from bytes's changelog.

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

  • Replace BufMut::put with BufMut::put_slice in Writer impl (#745)
  • Rename hex_impl! to fmt_impl! and reuse it for fmt::Debug (#743)
Commits

Updates tracing from 0.1.40 to 0.1.41

Release notes

Sourced from tracing's releases.

tracing 0.1.41

[ [crates.io][crate-0.1.41] ] | [ [docs.rs][docs-0.1.41] ]

This release updates the tracing-core dependency to [v0.1.33][core-0.1.33] and the tracing-attributes dependency to [v0.1.28][attrs-0.1.28].

Added

  • core: Add index API for Field (#2820)
  • core: Allow &[u8] to be recorded as event/span field (#2954)

Changed

  • Bump MSRV to 1.63 (#2793)
  • core: Use const thread_locals when possible (#2838)

Fixed

  • Removed core imports in macros (#2762)
  • attributes: Added missing RecordTypes for instrument (#2781)
  • attributes: Change order of async and unsafe modifier (#2864)
  • Fix missing field prefixes (#2878)
  • attributes: Extract match scrutinee (#2880)
  • Fix non-simple macro usage without message (#2879)
  • Fix event macros with constant field names in the first position (#2883)
  • Allow field path segments to be keywords (#2925)
  • core: Fix missed register_callsite error (#2938)
  • attributes: Support const values for target and name (#2941)
  • Prefix macro calls with ::core to avoid clashing with local macros (#3024)

#2762: tokio-rs/tracing#2762 #2781: tokio-rs/tracing#2781 #2793: tokio-rs/tracing#2793 #2820: tokio-rs/tracing#2820 #2838: tokio-rs/tracing#2838 #2864: tokio-rs/tracing#2864 #2878: tokio-rs/tracing#2878 #2879: tokio-rs/tracing#2879 #2880: tokio-rs/tracing#2880 #2883: tokio-rs/tracing#2883 #2925: tokio-rs/tracing#2925 #2938: tokio-rs/tracing#2938 #2941: tokio-rs/tracing#2941 #2954: tokio-rs/tracing#2954 #3024: tokio-rs/tracing#3024 [attrs-0.1.28]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.28 [core-0.1.33]: https://github.com/tokio-rs/tracing/releases/tag/tracing-core-0.1.33 [docs-0.1.41]: https://docs.rs/tracing/0.1.41/tracing/

... (truncated)

Commits

Updates tracing-subscriber from 0.3.18 to 0.3.19

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.19

[ [crates.io][crate-0.3.19] ] | [ [docs.rs][docs-0.3.19] ]

This release updates the tracing dependency to [v0.1.41][tracing-0.1.41] and the tracing-serde dependency to [v0.2.0][tracing-serde-0.2.0].

Added

  • Add set_span_events to fmt::Subscriber (#2962)
  • tracing: Allow &[u8] to be recorded as event/span field (#2954)

Changed

  • Set log max level when reloading (#1270)
  • Bump MSRV to 1.63 (#2793)
  • Use const thread_locals when possible (#2838)
  • Don't gate with_ansi() on the "ansi" feature (#3020)
  • Updated tracing-serde to 0.2.0 (#3160)

#1270: tokio-rs/tracing#1270 #2793: tokio-rs/tracing#2793 #2838: tokio-rs/tracing#2838 #2954: tokio-rs/tracing#2954 #2962: tokio-rs/tracing#2962 #3020: tokio-rs/tracing#3020 #3160: tokio-rs/tracing#3160 [tracing-0.1.41]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.41 [tracing-serde-0.2.0]: https://github.com/tokio-rs/tracing/releases/tag/tracing-serde-0.2.0 [docs-0.3.19]: https://docs.rs/tracing-subscriber/0.3.19/tracing_subscriber/ [crate-0.3.19]: https://crates.io/crates/tracing-subscriber/0.3.19

Commits

Updates tokio-stream from 0.1.16 to 0.1.17

Commits
  • 67355c6 chore: prepare tokio-stream v0.1.17 (#7020)
  • 405d746 signal: remove oneshot channels from tests (#7015)
  • e0d1293 ci: add instructions that explain how to fix spellcheck errors (#7016)
  • 480c010 signal: add SignalKind::info on illumos (#6995)
  • c032ea0 ci: detect trailing whitespace (#7013)
  • 0b31c2f chore: prepare tokio-util v0.7.13 (#7012)
  • 129f9fc codec: fix incorrect handling of invalid utf-8 in LinesCodec::decode_eof (#...
  • b5c227d tracing: move tracing instrumentation tests into tokio tests (#7007)
  • dcae2b9 ci: unfreeze FreeBSD from rustc 1.81 (#7009)
  • bb9d570 chore: prepare Tokio v1.42.0 (#7005)
  • Additional commits viewable in compare view

Updates blake3 from 1.5.4 to 1.5.5

Release notes

Sourced from blake3's releases.

1.5.5

version 1.5.5

Changes since 1.5.4:

  • b3sum --check now supports checkfiles with Windows-style newlines. b3sum still emits Unix-style newlines, even on Windows, but sometimes text editors or version control tools will swap them.
  • The "digest" feature (deleted in v1.5.2) has been added back to the blake3 crate. This is for backwards compatibility only, and it's insta-deprecated. All callers should prefer the "traits-preview" feature.
Commits
  • 81f772a version 1.5.5
  • c57d6b6 add back an explicit "digest" feature, for back compat
  • 1170f02 add support for windows newlines in b3sum --check
  • aa3e8ec build(CMake): Fix pkg-config for absolute CMAKE_INSTALL_*DIR
  • e815576 heading fix, C2SP
  • 60ff2ea link to yesterday's interview
  • 95da6b5 add xof benchmarks for non-power-of-2 lengths
  • 8e2e07e Remove Miri equality workaround function
  • 08cb01c put equivalent Hasher examples in the hash/keyed_hash/derive_key docs
  • 479eef8 test_compare_reference_impl_long_xof
  • See full diff in compare view

Updates quinn from 0.11.5 to 0.11.6

Commits
  • d23e4e4 CI: add test for netbsd
  • bb4df4d fixes quinn-rs/quinn#2033
  • 66546dd quinn: bump version to 0.11.6
  • ca1f2ef Revert "crypto: expose negotiated_cipher_suite in the hadshake data"
  • 2a8b904 proto: bump version to 0.11.9
  • eebccff quinn: Fix missing re-exports
  • 7944e0f proto: Fix missing re-exports
  • 8c66491 proto: Rename frame::Type to FrameType
  • 18b7956 build(deps): update thiserror requirement from 1.0.21 to 2.0.3
  • 9be256e feat: enable rustls logging, gated by rustls-log feature flag
  • Additional commits viewable in compare view

Updates rustls from 0.23.16 to 0.23.20

Commits
  • b4628c7 rustls-post-quantum: revert version to 0.2.0
  • 24d08f3 rustls-post-quantum: adjust head doc
  • 179592f verifybench.rs: nightly fmt
  • ef3fc21 nit: remove trailing space from doc comments
  • 00a3ddb fix rustls-provider-example hpke no-std support
  • 2f74c3d server: remove ClientHello constructor
  • 3ba5167 ci: adjust ech-client daily tests
  • f5aeb39 examples: use inner hostname in HTTPS DNS query
  • e232bca openssl-tests: install openssl from source
  • 43cbebb unbuffered: add regression tests for fragmented handshakes
  • Additional commits viewable in compare view

Updates rcgen from 0.13.1 to 0.13.2

Release notes

Sourced from rcgen's releases.

0.13.2

Several improvements to the capabilities available when working with certificate signing requests.

What's Changed

Commits
  • 447322c rcgen: 0.13.1 -> 0.13.2
  • 12d6533 Remove extern crate example in docs.
  • 72369d3 Update README.md example to match what's in lib.rs
  • 1b4a355 Bump codecov/codecov-action from 4 to 5
  • 331b8fd Add PKCS#10 attributes to CSR serializer
  • 349ffe4 Add CertificateParams::write_extension_request_attribute for cleanup
  • 57a8066 Fix: Write CSR attributes as an implicit set
  • ad9b094 Fix: Don't forget to write EKUs in CSRs
  • 5811e47 Fix: Don't write SANs in CSRs if none are present
  • d3dea5e Add more CSR roundtrip unit tests
  • Additional commits viewable in compare view

Updates tokio-tun from 0.12.1 to 0.13.0

Release notes

Sourced from tokio-tun's releases.

0.13.0

  • builder: merge try_build and try_build_mq
Commits

Updates libc from 0.2.162 to 0.2.169

Release notes

Sourced from libc's releases.

0.2.169

Added

Fixed

Breaking: rust-lang/rust#132975 corrected the signedness of core::ffi::c_char on various Tier 2 and Tier 3 platforms (mostly Arm and RISC-V) to match Clang. This release contains the corresponding changes to libc, including the following specific pull requests:

Cleanup

0.2.168

Added

Deprecated

  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#4183)

Fixed

  • Make the Debug implementation for unions opaque (#4176)

Other

0.2.167

Added

Fixed

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.169 - 2024-12-18

Added

Fixed

Breaking: rust-lang/rust#132975 corrected the signedness of core::ffi::c_char on various Tier 2 and Tier 3 platforms (mostly Arm and RISC-V) to match Clang. This release contains the corresponding changes to libc, including the following specific pull requests:

Cleanup

0.2.168 - 2024-12-09

Added

Deprecated

  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#4183)

Fixed

  • Make the Debug implementation for unions opaque (#4176)

Other

0.2.167 - 2024-11-28

Added

... (truncated)

Commits
  • bb5944c chore: release v0.2.169
  • 8ebcf49 Merge pull request #4211 from tgross35/backport-openbsd-build
  • fab6a64 Skip c_char_def on OpenBSD
  • c86544f Merge pull request #4206 from tgross35/backport-tomato
  • 2ade12c Replace arch-conditional c_char with a reexport
  • 0567b59 Ignore ordering style for c_char
  • 3e09b7c Do not re-export c_void in target-specific code
  • 7e761a5 Fix c_char on various targets
  • 9fea17a Mirror c_char configuration from rust-lang/rust
  • 3eb9670 feat: Update c_char type
  • Additional commits viewable in compare view

Updates thiserror from 1.0.65 to 2.0.9

Release notes

Sourced from thiserror's releases.

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,
    }
  • Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)

    // Before: impl<T: Octal> Display for Error<T>
    // After: impl<T> Display for Error<T>
    #[derive(Error, Debug)]

... (truncated)

Commits

Updates axum from 0.7.7 to 0.7.9

Release notes

Sourced from axum's releases.

axum - v0.7.9

  • fixed: Avoid setting content-length before middleware (#3031)

#3031:tokio-rs/axum#3031

axum - v0.7.8

  • fixed: Skip SSE incompatible chars of serde_json::RawValue in Event::json_data (#2992)
  • added: Add method_not_allowed_fallback to set a fallback when a path matches but there is no handler for the given HTTP method (#2903)
  • added: Add MethodFilter::CONNECT, routing::connect[_service] and MethodRouter::connect[_service] (#2961)
  • added: Add NoContent as a self-described shortcut for StatusCode::NO_CONTENT (#2978)

#2903: tokio-rs/axum#2903 #2961: tokio-rs/axum#2961 #2978: tokio-rs/axum#2978 #2992: tokio-rs/axum#2992

Commits

Bumps the mycelium group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.12` | `0.7.13` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.8.0` | `1.9.0` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.40` | `0.1.41` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.16` | `0.1.17` |
| [blake3](https://github.com/BLAKE3-team/BLAKE3) | `1.5.4` | `1.5.5` |
| [quinn](https://github.com/quinn-rs/quinn) | `0.11.5` | `0.11.6` |
| [rustls](https://github.com/rustls/rustls) | `0.23.16` | `0.23.20` |
| [rcgen](https://github.com/rustls/rcgen) | `0.13.1` | `0.13.2` |
| [tokio-tun](https://github.com/yaa110/tokio-tun) | `0.12.1` | `0.13.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.162` | `0.2.169` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.65` | `2.0.9` |
| [axum](https://github.com/tokio-rs/axum) | `0.7.7` | `0.7.9` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.134` |



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

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

Updates `serde` from 1.0.215 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

Updates `bytes` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.8.0...v1.9.0)

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

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

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

Updates `blake3` from 1.5.4 to 1.5.5
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases)
- [Commits](BLAKE3-team/BLAKE3@1.5.4...1.5.5)

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

Updates `rustls` from 0.23.16 to 0.23.20
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.16...v/0.23.20)

Updates `rcgen` from 0.13.1 to 0.13.2
- [Release notes](https://github.com/rustls/rcgen/releases)
- [Commits](rustls/rcgen@v0.13.1...v0.13.2)

Updates `tokio-tun` from 0.12.1 to 0.13.0
- [Release notes](https://github.com/yaa110/tokio-tun/releases)
- [Commits](yaa110/tokio-tun@0.12.1...0.13.0)

Updates `libc` from 0.2.162 to 0.2.169
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.169/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.162...0.2.169)

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

Updates `axum` from 0.7.7 to 0.7.9
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/axum@axum-v0.7.7...axum-v0.7.9)

Updates `serde_json` from 1.0.132 to 1.0.134
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.134)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mycelium
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mycelium
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: tokio-stream
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: blake3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: quinn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: rcgen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: tokio-tun
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mycelium
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mycelium
- dependency-name: axum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mycelium
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from LeeSmet as a code owner December 30, 2024 23:13
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 30, 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