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 production-dependencies group across 1 directory with 11 updates #24

Closed

Conversation

dependabot[bot]
Copy link

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

Bumps the production-dependencies group with 10 updates in the / directory:

Package From To
tokio 1.33.0 1.38.0
axum 0.6.20 0.7.5
clap 4.4.4 4.5.6
rust-embed 8.0.0 8.4.0
bytes 1.5.0 1.6.0
jsonrpsee 0.20.0 0.23.0
base64 0.21.5 0.22.1
bech32 0.9.1 0.11.0
ruint 1.10.1 1.12.3
proptest 1.2.0 1.4.0

Updates tokio from 1.33.0 to 1.38.0

Release notes

Sourced from tokio's releases.

Tokio v1.38.0

This release marks the beginning of stabilization for runtime metrics. It stabilizes RuntimeMetrics::worker_count. Future releases will continue to stabilize more metrics.

Added

  • fs: add File::create_new (#6573)
  • io: add copy_bidirectional_with_sizes (#6500)
  • io: implement AsyncBufRead for Join (#6449)
  • net: add Apple visionOS support (#6465)
  • net: implement Clone for NamedPipeInfo (#6586)
  • net: support QNX OS (#6421)
  • sync: add Notify::notify_last (#6520)
  • sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • sync: add split method to the semaphore permit (#6472, #6478)
  • task: add tokio::task::join_set::Builder::spawn_blocking (#6578)
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)

Changed

  • macros: make #[tokio::test] append #[test] at the end of the attribute list (#6497)
  • metrics: fix blocking_threads count (#6551)
  • metrics: stabilize RuntimeMetrics::worker_count (#6556)
  • runtime: move task out of the lifo_slot in block_in_place (#6596)
  • runtime: panic if global_queue_interval is zero (#6445)
  • sync: always drop message in destructor for oneshot receiver (#6558)
  • sync: instrument Semaphore for task dumps (#6499)
  • sync: use FIFO ordering when waking batches of wakers (#6521)
  • task: make LocalKey::get work with Clone types (#6433)
  • tests: update nix and mio-aio dev-dependencies (#6552)
  • time: clean up implementation (#6517)
  • time: lazily init timers on first poll (#6512)
  • time: remove the true_when field in TimerShared (#6563)
  • time: use sharding for timer implementation (#6534)

Fixed

  • taskdump: allow building taskdump docs on non-unix machines (#6564)
  • time: check for overflow in Interval::poll_tick (#6487)
  • sync: fix incorrect is_empty on mpsc block boundaries (#6603)

Documented

  • fs: rewrite file system docs (#6467)
  • io: fix stdin documentation (#6581)
  • io: fix obsolete reference in ReadHalf::unsplit() documentation (#6498)
  • macros: render more comprehensible documentation for select! (#6468)
  • net: add missing types to module docs (#6482)
  • net: fix misleading NamedPipeServer example (#6590)

... (truncated)

Commits

Updates axum from 0.6.20 to 0.7.5

Release notes

Sourced from axum's releases.

axum-extra - v0.7.5

  • fixed: Remove explicit auto deref from PrivateCookieJar example (#2028)

#2028: tokio-rs/axum#2028

axum - v0.7.5

  • fixed: Fixed layers being cloned when calling axum::serve directly with a Router or MethodRouter (#2586)
  • fixed: h2 is no longer pulled as a dependency unless the http2 feature is enabled (#2605)

#2586: tokio-rs/axum#2586 #2605: tokio-rs/axum#2605

axum-extra - v0.7.4

  • added: Add Html response type (#1921)
  • added: Add Css response type (#1921)
  • added: Add JavaScript response type (#1921)
  • added: Add Wasm response type (#1921)

#1921: tokio-rs/axum#1921

axum - v0.7.4

  • fixed: Fix performance regression present since axum 0.7.0 (#2483)
  • fixed: Improve debug_handler on tuple response types (#2201)
  • added: Add must_use attribute to Serve and WithGracefulShutdown (#2484)
  • added: Re-export axum_core::body::BodyDataStream from axum

#2201: tokio-rs/axum#2201 #2483: tokio-rs/axum#2483 #2201: tokio-rs/axum#2201 #2484: tokio-rs/axum#2484

axum-extra - v0.7.3

  • added: Implement Deref and DerefMut for built-in extractors (#1922)
  • added: Add OptionalPath extractor (#1889)

#1889: tokio-rs/axum#1889 #1922: tokio-rs/axum#1922

axum - v0.7.3

  • added: Body implements From<()> now (#2411)
  • change: Update version of multer used internally for multipart (#2433)
  • change: Update tokio-tungstenite to 0.21 (#2435)
  • added: Enable tracing feature by default (#2460)
  • added: Support graceful shutdown on serve (#2398)
  • added: RouterIntoService implements Clone (#2456)

#2411: tokio-rs/axum#2411 #2433: tokio-rs/axum#2433

... (truncated)

Commits

Updates clap from 4.4.4 to 4.5.6

Release notes

Sourced from clap's releases.

v4.5.6

[4.5.6] - 2024-06-06

v4.5.4

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used

v4.5.0

No release notes provided.

v4.4.18

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

v4.4.17

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

v4.4.16

[4.4.16] - 2024-01-12

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used

[4.5.0] - 2024-02-08

Compatibility

  • Update MSRV to 1.74

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

... (truncated)

Commits
  • 122a2b3 chore: Release
  • d87dee6 Merge pull request #5476 from pzmarzly/issue-4265
  • f087c39 chore: Release
  • 1870d32 docs: Update changelog
  • ea7bfe2 Merge pull request #5520 from epage/exclusive
  • 08656d0 fix(parser): Allow exclusive to override required_*
  • 65e90cd test(parser): Show conditional requireds and exclusive
  • 5e3386b docs: Link to repo, not webpage inside repo
  • 2d83106 chore(deps): Update compatible (dev) (#5514)
  • b917796 Merge pull request #5505 from epage/snapbox
  • Additional commits viewable in compare view

Updates rust-embed from 8.0.0 to 8.4.0

Changelog

Sourced from rust-embed's changelog.

[8.4.0] - 2024-05-11

  • Re-export RustEmbed as Embed #245. Thanks to pyrossh
  • Do not build glob matchers repeatedly when include-exclude feature is enabled #244. Thanks to osiewicz
  • Add metadata_only attribute #241. Thanks to ddfisher
  • Replace expect with a safer alternative that returns None instead #240. Thanks to costinsin
  • Eliminate unnecessary to_path call #239. Thanks to smoelius

[8.3.0] - 2024-02-26

[8.2.0] - 2023-12-29

[8.1.0] - 2023-12-08

Commits

Updates smallvec from 1.11.1 to 1.13.2

Release notes

Sourced from smallvec's releases.

v1.13.2

What's Changed

Full Changelog: servo/rust-smallvec@v1.13.1...v1.13.2

v1.13.1

  • Remove the optional get-size feature, to avoid a cyclic dependency (#335).

Full Changelog: servo/rust-smallvec@v1.13.0...v1.13.1

v1.13.0

What's Changed

Full Changelog: servo/rust-smallvec@v1.12.0...v1.13.0

v1.12.0

What's Changed

New Contributors

Full Changelog: servo/rust-smallvec@v1.11.2...v1.12.0

v1.11.2

What's Changed

New Contributors

Full Changelog: servo/rust-smallvec@v1.11.1...v1.11.2

Commits
  • 0089d0a Bump version to 1.13.2
  • b1d2814 Fix UB on out-of-bounds insert()
  • 3057362 Stop passing tag-raw-ptrs to MIRIFLAGS
  • f6665a5 Add more tests for UB
  • f8136b8 Version 1.13.1
  • 25f5d91 Revert "Impl get_size::GetSize (behind feature flag)"
  • ff05444 Version 1.13.0
  • 38863e8 Impl get_size::GetSize (behind feature flag)
  • 93b0e20 Version 1.12.0
  • c638a0b Add from_const_with_len_unchecked
  • Additional commits viewable in compare view

Updates bytes from 1.5.0 to 1.6.0

Release notes

Sourced from bytes's releases.

Bytes 1.6.0 (March 22, 2024)

Added

  • Add Bytes::is_unique (#643)

Documented

  • Fix changelog typo (#628)
  • Fix some spelling mistakes (#633)
  • Typo fix (#637)
  • Fix broken links (#639)
  • Add security policy (#649)

Internal changes

  • Move comment to correct constant (#629)
  • Various cleanup (#635)
  • Simplify UninitSlice::as_uninit_slice_mut() logic (#644)
  • Use self. instead of Self:: (#642)
  • BytesMut: Assert alignment of Shared (#652)
  • Remove unnecessary namespace qualifier (#660)
  • Remove an unnecessary else branch (#662)
  • Remove unreachable else branch (#661)
  • make parameter mut in From<Vec> (#667)
  • Restore commented tests (#665)
  • Use sub instead of offset (#668)
  • Calculate original capacity only if necessary (#666)
  • set_vec_pos does not need a second parameter (#672)
  • get_vec_pos: use &self instead of &mut self (#670)
  • Refactor split_at/split_to (#663)
  • Use Iterator from the prelude (#673)
  • copy_to_bytes: Add panic section to docs (#676)
  • Remove redundant reserve call (#674)
  • Use ManuallyDrop instead of mem::forget (#675)
Changelog

Sourced from bytes's changelog.

1.6.0 (March 22, 2024)

Added

  • Add Bytes::is_unique (#643)

Documented

  • Fix changelog typo (#628)
  • Fix some spelling mistakes (#633)
  • Typo fix (#637)
  • Fix broken links (#639)
  • Add security policy (#649)

Internal changes

  • Move comment to correct constant (#629)
  • Various cleanup (#635)
  • Simplify UninitSlice::as_uninit_slice_mut() logic (#644)
  • Use self. instead of Self:: (#642)
  • BytesMut: Assert alignment of Shared (#652)
  • Remove unnecessary namespace qualifier (#660)
  • Remove an unnecessary else branch (#662)
  • Remove unreachable else branch (#661)
  • make parameter mut in From<Vec> (#667)
  • Restore commented tests (#665)
  • Use sub instead of offset (#668)
  • Calculate original capacity only if necessary (#666)
  • set_vec_pos does not need a second parameter (#672)
  • get_vec_pos: use &self instead of &mut self (#670)
  • Refactor split_at/split_to (#663)
  • Use Iterator from the prelude (#673)
  • copy_to_bytes: Add panic section to docs (#676)
  • Remove redundant reserve call (#674)
  • Use ManuallyDrop instead of mem::forget (#675)
Commits

Updates jsonrpsee from 0.20.0 to 0.23.0

Release notes

Sourced from jsonrpsee's releases.

v0.23.0

[v0.23.0] - 2024-06-07

This is a new breaking release, and let's go through the changes.

hyper v1.0

jsonrpsee has been upgraded to use hyper v1.0 and this mainly impacts users that are using the low-level API and rely on the hyper::service::make_service_fn which has been removed, and from now on you need to manage the socket yourself.

The hyper::service::make_service_fn can be replaced by the following example template:

async fn start_server() {
  let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
loop {
let sock = tokio::select! {
res = listener.accept() => {
match res {
Ok((stream, _remote_addr)) => stream,
Err(e) => {
tracing::error!("failed to accept v4 connection: {:?}", e);
continue;
}
}
}
_ = per_conn.stop_handle.clone().shutdown() => break,
};
let svc = tower::service_fn(move |req: hyper::Request&lt;hyper::body::Incoming&gt;| {
  let mut jsonrpsee_svc = svc_builder
    .set_rpc_middleware(rpc_middleware)
    .build(methods, stop_handle);
  // https://github.com/rust-lang/rust/issues/102211 the error type can't be inferred
  // to be `Box&lt;dyn std::error::Error + Send + Sync&gt;` so we need to convert it to a concrete type
  // as workaround.
  jsonrpsee_svc
    .call(req)
    .await
    .map_err(|e| anyhow::anyhow!(&quot;{:?}&quot;, e))
});
tokio::spawn(jsonrpsee::server::serve_with_graceful_shutdown(
sock,
svc,
stop_handle.clone().shutdown(),
));

}
</tr></table>

... (truncated)

Changelog

Sourced from jsonrpsee's changelog.

[v0.23.0] - 2024-06-07

This is a new breaking release, and let's go through the changes.

hyper v1.0

jsonrpsee has been upgraded to use hyper v1.0 and this mainly impacts users that are using the low-level API and rely on the hyper::service::make_service_fn which has been removed, and from now on you need to manage the socket yourself.

The hyper::service::make_service_fn can be replaced by the following example template:

async fn start_server() {
  let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
loop {
let sock = tokio::select! {
res = listener.accept() => {
match res {
Ok((stream, _remote_addr)) => stream,
Err(e) => {
tracing::error!("failed to accept v4 connection: {:?}", e);
continue;
}
}
}
_ = per_conn.stop_handle.clone().shutdown() => break,
};
let svc = tower::service_fn(move |req: hyper::Request&lt;hyper::body::Incoming&gt;| {
  let mut jsonrpsee_svc = svc_builder
    .set_rpc_middleware(rpc_middleware)
    .build(methods, stop_handle);
  // https://github.com/rust-lang/rust/issues/102211 the error type can't be inferred
  // to be `Box&lt;dyn std::error::Error + Send + Sync&gt;` so we need to convert it to a concrete type
  // as workaround.
  jsonrpsee_svc
    .call(req)
    .await
    .map_err(|e| anyhow::anyhow!(&quot;{:?}&quot;, e))
});
tokio::spawn(jsonrpsee::server::serve_with_graceful_shutdown(
sock,
svc,
stop_handle.clone().shutdown(),
));

}
}
</tr></table>

... (truncated)

Commits

Updates base64 from 0.21.5 to 0.22.1

Changelog

Sourced from base64's changelog.

0.22.1

  • Correct the symbols used for the predefined alphabet::BIN_HEX.

0.22.0

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)

0.21.7

  • Support getting an alphabet's contents as a str via Alphabet::as_str()

0.21.6

  • Improved introductory documentation and example
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
  • 5d70ba7 Merge pull request #269 from marshallpierce/mp/decode-precisely
  • efb6c00 Release notes
  • 2b91084 Add some tests to boost coverage
  • Additional commits viewable in compare view

Updates bech32 from 0.9.1 to 0.11.0

Changelog

Sourced from bech32's changelog.

0.11.0 - 2024-02-23

The 0.10.0 release contains API breaking changes compared to 0.10.0-beta and because of semver rules (which we adhere to) cannot be released with that version number, we had to yank it and re-do the release as 0.11.0 - sorry.

0.10.0 - 2024-02-22 - yanked

Release the new primitives module! This release is a total re-write of the crate - enjoy.

Right before doing this release we added a few API improvements to the primitives::decode module:

  • Add accessor functions to the decode types #167
  • Add CheckedHrpstring::fe32_iter function #174
  • Make a couple of the functions on CheckedHrpstring struct public #173

0.10.0-beta

Re-implement the crate level API using the new primitives module.

0.10.0-alpha

This release introduces a new primitives module that is basically a new implementation of the whole crate. We also add a segwit module but we have not yet settled on the exact new API in lib.rs, hence the alpha release.

Commits

Updates ruint from 1.10.1 to 1.12.3

Release notes

Sourced from ruint's releases.

v1.12.1

What's Changed

Full Changelog: recmo/uint@v1.12.0...v1.12.1

v1.12.0

What's Changed

New Contributors

Full Changelog: recmo/uint@v1.11.1...v1.12.0

v1.11.1

What's Changed

New Contributors

Full Changelog: recmo/uint@v1.11.0...v1.11.1

v1.11.0

What's Changed

... (truncated)

Changelog

Sourced from ruint's changelog.

[1.12.3] - 2024-06-03

Changed

  • Use borrowing/carrying ops in add/sub, remove bound checks in shifts (#366)
  • Make mul_mod non-allocating (#373)

Fixed

  • Add alloc requirement to num-traits feature #363

#363: recmo/uint#363 #366: recmo/uint#366 #373: recmo/uint#373

[1.12.1] - 2024-03-12

Fixed

  • docs.rs build (#356)
  • uint! in item position (#360)

#356: recmo/uint#356 #360: recmo/uint#360

[1.12.0] - 2024-02-27

Added

  • Wrap the uint! macro to allow usage without needing uint import (#350)

Fixed

  • Overflow check in overflowing_shr implementation (#347)

#347: recmo/uint#347 #350: recmo/uint#350

[1.11.1] - 2023-11-18

Fixed

  • Typo in Shr implementation (#343)

#343: recmo/uint#343

Added

... (truncated)

Commits
  • 0c07a4c Merge pull request #376 from DaniPopes/release-1.12.3
  • c5a588e chore: release 1.12.3
  • 7dc999e Merge pull request #375 from DaniPopes/rm-likely
  • bbcfec4 chore: likely/unlikely does not work on stable
  • fb9482f Merge pull request #374 from DaniPopes/less-always
  • 71eb7d5 Merge branch 'main' into less-always
  • dc928b2 Merge pull request

…y with 11 updates

Bumps the production-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.33.0` | `1.38.0` |
| [axum](https://github.com/tokio-rs/axum) | `0.6.20` | `0.7.5` |
| [clap](https://github.com/clap-rs/clap) | `4.4.4` | `4.5.6` |
| [rust-embed](https://github.com/pyros2097/rust-embed) | `8.0.0` | `8.4.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.5.0` | `1.6.0` |
| [jsonrpsee](https://github.com/paritytech/jsonrpsee) | `0.20.0` | `0.23.0` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.5` | `0.22.1` |
| [bech32](https://github.com/rust-bitcoin/rust-bech32) | `0.9.1` | `0.11.0` |
| [ruint](https://github.com/recmo/uint) | `1.10.1` | `1.12.3` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.2.0` | `1.4.0` |



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

Updates `axum` from 0.6.20 to 0.7.5
- [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.6.20...axum-v0.7.5)

Updates `clap` from 4.4.4 to 4.5.6
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.4.4...v4.5.6)

Updates `rust-embed` from 8.0.0 to 8.4.0
- [Changelog](https://github.com/pyrossh/rust-embed/blob/master/changelog.md)
- [Commits](https://github.com/pyros2097/rust-embed/commits)

Updates `smallvec` from 1.11.1 to 1.13.2
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.11.1...v1.13.2)

Updates `bytes` from 1.5.0 to 1.6.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.5.0...v1.6.0)

Updates `jsonrpsee` from 0.20.0 to 0.23.0
- [Release notes](https://github.com/paritytech/jsonrpsee/releases)
- [Changelog](https://github.com/paritytech/jsonrpsee/blob/master/CHANGELOG.md)
- [Commits](paritytech/jsonrpsee@v0.20.0...v0.23.0)

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

Updates `bech32` from 0.9.1 to 0.11.0
- [Changelog](https://github.com/rust-bitcoin/rust-bech32/blob/master/CHANGELOG.md)
- [Commits](rust-bitcoin/rust-bech32@v0.9.1...v0.11.0)

Updates `ruint` from 1.10.1 to 1.12.3
- [Release notes](https://github.com/recmo/uint/releases)
- [Changelog](https://github.com/recmo/uint/blob/main/CHANGELOG.md)
- [Commits](recmo/uint@v1.10.1...v1.12.3)

Updates `proptest` from 1.2.0 to 1.4.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.2.0...v1.4.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: axum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rust-embed
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: smallvec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: jsonrpsee
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: bech32
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ruint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: proptest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

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

dependabot bot commented on behalf of github Jun 17, 2024

Superseded by #25.

@dependabot dependabot bot closed this Jun 17, 2024
@dependabot dependabot bot deleted the dependabot/cargo/production-dependencies-46860b8d9c branch June 17, 2024 10:42
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