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

build(deps): bump the prod group across 1 directory with 39 updates #469

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 6, 2024

Bumps the prod group with 39 updates in the / directory:

Package From To
clap 4.5.1 4.5.4
chrono 0.4.34 0.4.38
indexmap 2.2.3 2.2.6
serde 1.0.197 1.0.200
toml 0.8.10 0.8.12
rayon 1.8.1 1.10.0
tokio 1.36.0 1.37.0
tokio-stream 0.1.14 0.1.15
pin-project 1.1.4 1.1.5
color-eyre 0.6.2 0.6.3
thiserror 1.0.57 1.0.59
metrics 0.22.1 0.22.3
thread-priority 0.15.1 1.1.0
hyper 0.14.28 1.3.1
metrics-exporter-prometheus 0.13.1 0.14.0
log 0.4.20 0.4.21
regex 1.10.3 1.10.4
insta 1.35.1 1.38.0
serde_json 1.0.114 1.0.116
tempfile 3.10.0 3.10.1
prost 0.12.3 0.12.4
bitflags 2.4.2 2.5.0
bs58 0.5.0 0.5.1
incrementalmerkletree 0.5.0 0.5.1
primitive-types 0.11.1 0.12.2
secp256k1 0.26.0 0.29.0
orchard 0.6.0 0.8.0
zcash_history 0.3.0 0.4.0
zcash_primitives 0.13.0-rc.1 0.15.0
serde_with 3.6.1 3.8.1
zcash_address 0.3.1 0.3.2
zcash_client_backend 0.10.0-rc.4 0.12.1
bytes 1.5.0 1.6.0
tokio-util 0.7.10 0.7.11
zcash_script 0.1.14 0.1.16
zcash_proofs 0.13.0-rc.1 0.14.0
reqwest 0.11.24 0.11.27
jsonrpc 0.17.0 0.18.0
tokio-test 0.4.3 0.4.4

Updates clap from 4.5.1 to 4.5.4

Release notes

Sourced from clap's releases.

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
Changelog

Sourced from clap's changelog.

[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
Commits
  • 5e4facf chore: Release
  • 8880b0a docs: Update changelog
  • 132b5dd Merge pull request #5425 from epage/lit
  • df915fe fix(derive): Re-allow expressions for id's
  • 8eab48f refactor(derive): Make it easier to work with 'Name'
  • be73195 refactor(derive): Clarify tests
  • 024089b Merge pull request #5415 from Pi-Cla/patch-1
  • 3b35dba docs: Add mention of nushell to clap_complete README
  • 58469d1 Merge pull request #5405 from epage/docs
  • 655d829 docs(derive): Fix ToC links within tutorial chapters
  • Additional commits viewable in compare view

Updates chrono from 0.4.34 to 0.4.38

Release notes

Sourced from chrono's releases.

v0.4.38

This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient days_since method for the Weekday type.

Chrono 0.4.38 also removes the long deprecated rustc-serialize feature. Support for rustc-serialize will be soft-destabilized in the next Rust edition. Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.

In chrono 0.4.36 we made an accidental breaking change by switching to derive(Copy) for DateTime instead of a manual implementation. It is reverted in this release.

Removals

Additions

Fixes

  • Return error when rounding with a zero duration (#1474, thanks @​Dav1dde)
  • Manually implement Copy for DateTime if offset is Copy (#1573)

Internal

  • Inline test_encodable_json and test_decodable_json functions (#1550)
  • CI: Reduce combinations in cargo hack check (#1553)
  • Refactor formatting code (#1335)
  • Optimize number formatting (#1558)
  • Only package files needed for building and testing (#1554)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

v0.4.37

Version 0.4.36 introduced an unexpected breaking change and was yanked. In it LocalResult was renamed to MappedLocalTime to avoid the impression that it is a Result type were some of the results are errors. For backwards compatibility a type alias with the old name was added.

As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with use chrono::LocalResult::*. With 0.4.37 we make the new name MappedLocalTime the alias, but keep using it in function signatures and the documentation as much as possible.

See also the release notes of chrono 0.4.36 from yesterday for the yanked release.

v0.4.36

This release un-deprecates the methods on TimeDelta that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.

New is the DateTime::with_time() method. As an example of when it is useful:

use chrono::{Local, NaiveTime};
// Today at 12:00:00
let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap());

Additions

  • Add DateTime::with_time() (#1510)

Deprecations

  • Revert TimeDelta deprecations (#1543)
  • Deprecate TimeStamp::timestamp_subsec_nanos, which was missed in the 0.4.35 release (#1486)

... (truncated)

Commits
  • 352a352 Prepare 0.4.38
  • 46d44d6 Manually implement Copy for DateTime if offset is Copy
  • 760eb66 Update windows-bindgen requirement from 0.55 to 0.56
  • 391187f Return error when rounding with zero duration
  • ffc75e5 Add TimeDelta::checked_mul and TimeDelta::checked_div
  • f8cecbe Make Weekday::num_days_from public, rename to days_since.
  • 0cfc405 Optimize number formatting
  • 74ba83b Take pad by value
  • 78e79db Match on tuples in format_fixed
  • f3d76c7 Match on tuples in format_numeric
  • Additional commits viewable in compare view

Updates indexmap from 2.2.3 to 2.2.6

Changelog

Sourced from indexmap's changelog.

2.2.6

  • Added trait MutableValues for opt-in mutable access to set values.

2.2.5

  • Added optional borsh serialization support.

2.2.4

  • Added an insert_sorted method on IndexMap, IndexSet, and VacantEntry.
  • Avoid hashing for lookups in single-entry maps.
  • Limit preallocated memory in serde deserializers.
Commits
  • 3f0fffb Merge pull request #323 from cuviper/mutable
  • 33c1a7c Fix unused_imports
  • b76ff73 Fix clippy::multiple_bound_locations
  • 0060546 Release 2.2.6
  • 210b027 Opt-in mutable access on IndexSet
  • 184fe4b Merge pull request #320 from cuviper/release-2.2.5
  • 5d7bd5e Release 2.2.5
  • c934ace Merge pull request #313 from heliaxdev/heliax/borsh-support
  • b81a4d2 Use S for the BuildHasher parameter
  • 32793f1 Don't require BuildHasher in BorshSerialize
  • Additional commits viewable in compare view

Updates serde from 1.0.197 to 1.0.200

Release notes

Sourced from serde's releases.

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • cc865ac Release 1.0.200
  • 2d973c1 Merge pull request #2733 from jamessan/nan-decimal
  • 6ca499b Only format Unexpected::Float with decimal point if it is finite
  • 1477028 Release 1.0.199
  • 789740b Merge pull request #2732 from aatifsyed/master
  • 8fe7539 fix: ambiguous associated type in forward_to_deserialize_any!
  • f6623a3 Ignore cast_precision_loss pedantic clippy lint
  • c4fb923 Release 1.0.198
  • 65b7eea Merge pull request #2729 from dtolnay/saturating
  • 01cd696 Integrate Saturating<T> deserialization into impl_deserialize_num macro
  • Additional commits viewable in compare view

Updates toml from 0.8.10 to 0.8.12

Commits
  • 3a777b3 chore: Release
  • 7979905 docs: Update changelog
  • 487768d Merge pull request #703 from epage/overflow
  • 6987f77 chore(ci): Run with default opt-level
  • 21f545d fix(parser): Don't stackoverflow on opt-level=0
  • af1f97d refactor(parser): Pull recursion limit out to variable
  • eb86543 chore: Release
  • 246b292 docs: Update changelog
  • d41c62c Merge pull request #701 from epage/cleanup
  • 31457b3 refactor(error): Clean up highlight code
  • Additional commits viewable in compare view

Updates rayon from 1.8.1 to 1.10.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.10.0 (2024-03-23)

  • The new methods ParallelSlice::par_chunk_by and ParallelSliceMut::par_chunk_by_mut work like the slice methods chunk_by and chunk_by_mut added in Rust 1.77.

Release rayon 1.9.0 (2024-02-27)

  • The new methods IndexedParallelIterator::by_exponential_blocks and by_uniform_blocks allow processing items in smaller groups at a time.
  • The new iter::walk_tree, walk_tree_prefix, and walk_tree_postfix functions enable custom parallel iteration over tree-like structures.
  • The new method ParallelIterator::collect_vec_list returns items as a linked list of vectors, which is an efficient mode of parallel collection used by many of the internal implementations of collect.
  • The new methods ParallelSliceMut::par_split_inclusive_mut, ParallelSlice::par_split_inclusive, and ParallelString::par_split_inclusive all work like a normal split but keeping the separator as part of the left slice.
  • The new ParallelString::par_split_ascii_whitespace splits only on ASCII whitespace, which is faster than including Unicode multi-byte whitespace.
  • OsString now implements FromParallelIterator<_> and ParallelExtend<_> for a few item types similar to the standard FromIterator and Extend.
  • The internal Pattern trait for string methods is now implemented for [char; N] and &[char; N], matching any of the given characters.
Commits

Updates tokio from 1.36.0 to 1.37.0

Release notes

Sourced from tokio's releases.

Tokio v1.37.0

1.37.0 (March 28th, 2024)

Added

  • fs: add set_max_buf_size to tokio::fs::File (#6411)
  • io: add try_new and try_with_interest to AsyncFd (#6345)
  • sync: add forget_permits method to semaphore (#6331)
  • sync: add is_closed, is_empty, and len to mpsc receivers (#6348)
  • sync: add a rwlock() method to owned RwLock guards (#6418)
  • sync: expose strong and weak counts of mpsc sender handles (#6405)
  • sync: implement Clone for watch::Sender (#6388)
  • task: add TaskLocalFuture::take_value (#6340)
  • task: implement FromIterator for JoinSet (#6300)

Changed

  • io: make io::split use a mutex instead of a spinlock (#6403)

Fixed

  • docs: fix docsrs build without net feature (#6360)
  • macros: allow select with only else branch (#6339)
  • runtime: fix leaking registration entries when os registration fails (#6329)

Documented

  • io: document cancel safety of AsyncBufReadExt::fill_buf (#6431)
  • io: document cancel safety of AsyncReadExt's primitive read functions (#6337)
  • runtime: add doc link from Runtime to #[tokio::main] (#6366)
  • runtime: make the enter example deterministic (#6351)
  • sync: add Semaphore example for limiting the number of outgoing requests (#6419)
  • sync: fix missing period in broadcast docs (#6377)
  • sync: mark mpsc::Sender::downgrade with #[must_use] (#6326)
  • sync: reorder const_new before new_with (#6392)
  • sync: update watch channel docs (#6395)
  • task: fix documentation links (#6336)

Changed (unstable)

  • runtime: include task Id in taskdumps (#6328)
  • runtime: panic if unhandled_panic is enabled when not supported (#6410)

#6300: tokio-rs/tokio#6300 #6326: tokio-rs/tokio#6326 #6328: tokio-rs/tokio#6328 #6329: tokio-rs/tokio#6329 #6331: tokio-rs/tokio#6331 #6336: tokio-rs/tokio#6336 #6337: tokio-rs/tokio#6337

... (truncated)

Commits
  • 9c337ca chore: prepare Tokio v1.37.0 (#6435)
  • e542501 io: document cancel safety of AsyncBufReadExt::fill_buf (#6431)
  • 4601c84 stream: add next_many and poll_next_many to StreamMap (#6409)
  • deff252 util: document cancel safety of SinkExt::send and StreamExt::next (#6417)
  • 4565b81 sync: add a rwlock() method to owned RwLock guards (#6418)
  • 3ce4720 sync: add is_closed, is_empty, and len to mpsc receivers (#6348)
  • 8342e4b util: assert compatibility between LengthDelimitedCodec options (#6414)
  • 4c453e9 readme: add description about benchmarks (#6425)
  • 1846483 sync: expose strong and weak counts of mpsc sender handles (#6405)
  • baad270 sync: add Semaphore example for limiting the number of outgoing requests (#6419)
  • Additional commits viewable in compare view

Updates tokio-stream from 0.1.14 to 0.1.15

Commits

Updates pin-project from 1.1.4 to 1.1.5

Release notes

Sourced from pin-project's releases.

1.1.5

  • Suppress unused_qualifications lint in generated code.
Changelog

Sourced from pin-project's changelog.

[1.1.5] - 2024-03-05

  • Suppress unused_qualifications lint in generated code.
Commits
  • 8630e1a Release 1.1.5
  • 78d23fd Suppress unused_qualifications lint in generated code
  • fd08c71 Ignore more lints at workspace level
  • 24597ec Add link to clippy::thread_local_initializer_can_be_made_const bug report
  • 3ad1bd3 tidy: Use yq via venv
  • cb24a63 tests: Fix non_local_definitions warning
  • d42e9cc tidy: Check TOML format
  • bf0da83 Revert "Move negative_impls test from run-pass to ui"
  • e1ce805 Update ui test output to nightly-2024-02-07
  • 537b60c Revert "Revert "Revert "Disable dependabot update for Github Actions"""
  • Additional commits viewable in compare view

Updates color-eyre from 0.6.2 to 0.6.3

Commits
  • f544fed chore: Release
  • 7689b98 chore: don't inherit workspace readme
  • 63cb412 chore: remove old metadata
  • 7e7e173 chore: update changelog
  • 7a5c32a Add color-eyre to workspace (#110)
  • eb8d059 Merge remote-tracking branch 'origin/master' into color-eyre
  • 75beaae fix: remove anyhow feature flag from OptionExt location test (#148)
  • e570151 color-spantrace: bump owo-colors to 4.0 (#156)
  • cb4bab6 chore: update issues redirect
  • 8ebc308 fix: make theme test more lenient
  • Additional commits viewable in compare view

Updates thiserror from 1.0.57 to 1.0.59

Release notes

Sourced from thiserror's releases.

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
Commits
  • e7ad85e Release 1.0.59
  • af477ec Merge pull request #297 from dtolnay/traitident
  • f3fbd99 Implement ToTokens without reliance on {:?}
  • 508ece8 Revert "Temporarily disable miri on doctests"
  • c8c804c Explicitly install a Rust toolchain for cargo-outdated job
  • 6969595 Merge pull request #293 from dtolnay/workspacewrapper
  • 488d52f Apply RUSTC_WORKSPACE_WRAPPER
  • ba33438 Temporarily disable miri on doctests
  • df8bffa Release 1.0.58
  • 14be209 Merge pull request #292 from dtolnay/deadcode
  • Additional commits viewable in compare view

Updates metrics from 0.22.1 to 0.22.3

Commits
  • a143ef6 chore: Release
  • 8f79f70 Add more implementations of IntoF64 for standard numerical types.
  • dc2620b chore: Release
  • 4b9f72b chore: Release
  • 016f00b chore: Release
  • 1bf58a0 missed a spot
  • 102b7d4 update release.toml
  • cc174d0 Update base64 requirement from 0.21.0 to 0.22.0 (#458)
  • 3e886cf update changelogs, make ignored test work, fix docs.rs cfg flag rendering
  • 5603f6d link directly to rust-telemetry-workshop repo
  • Additional commits viewable in compare view

Updates thread-priority from 0.15.1 to 1.1.0

Commits

Updates hyper from 0.14.28 to 1.3.1

Release notes

Sourced from hyper's releases.

v1.3.1

Bug Fixes

  • client: revert auto content-length header for some requests (#3633)

v1.3.0

Bug Fixes

  • client: send content-length even with no body (172fdfaf)
  • http2:
    • max_header_list_size(num) defaults to 16kb (203d1b09)
    • initial_max_send_streams defaults to 100 (2d1bd708)
  • server:
    • avoid unwrapping for the Future impl of HTTP/1 UpgradeableConnection (#3627) (b79be911, closes #3621)
    • avoid graceful_shutdown panic on upgraded H1 connection (#3616) (6ecf8521)

Features

  • client:
    • add max_header_list_size(num) to http2::Builder. (1c5b1b87)
    • add max_pending_accept_reset_streams HTTP2 option (#3617) (330ddf1d)
  • ext: implement From ReasonPhrase for Bytes (dc27043a)
  • service: expose Service and HttpService trait unconditionally (6aee2e6e)
  • server: relax 'static from connection IO trait bounds (#3595) (0013bdda)

New Contributors

Full Changelog: hyperium/hyper@v1.2.0...v1.3.0

v1.2.0

Features

  • http1: support configurable max_headers(num) to client and server (#3523) (b1142448)
  • http2:
    • add config for max_local_error_reset_streams in server (#3530) (d7680e30)
    • add initial_max_send_streams method to HTTP/2 client builder (#3524) (fdfa60d9)
      • NOTE: The default for this will change in v1.3 to something conservative. If you have an environment where the server can always accept a large amount of concurrent streams, and depend on that for performance, you should set this option manually.
    • add max_pending_accept_reset_streams(num) back to HTTP/2 server builder (#3507 (a9fa893f)

Bug Fixes

... (truncated)

Changelog

Sourced from hyper's changelog.

v1.3.1 (2024-04-16)

Bug Fixes

  • client: revert auto content-length header for some requests (#3633)

v1.3.0 (2024-04-15)

Bug Fixes

  • client: send content-length even with no body (172fdfaf)
  • http2:
    • max_header_list_size(num) defaults to 16kb (203d1b09)
    • initial_max_send_streams defaults to 100 (2d1bd708)
  • server:
    • avoid unwrapping for the Future impl of HTTP/1 UpgradeableConnection (#3627) (b79be911, closes #3621)
    • avoid graceful_shutdown panic on upgraded H1 connection (#3616) (6ecf8521)

Features

  • client:
    • add max_header_list_size(num) to http2::Builder. (1c5b1b87)
    • add max_pending_accept_reset_streams HTTP2 option (#3617) (330ddf1d)
  • ext: implement From ReasonPhrase for Bytes (dc27043a)
  • service: expose Service and HttpService trait unconditionally (6aee2e6e)
  • server: relax 'static from connection IO trait bounds (#3595) (0013bdda)

v1.2.0 (2024-02-21)

Bug Fixes

  • http2: typo in trace logging (#3536) (79862ec2)
  • rt: Sleep::downcast_mut_pin() no longer extend lifetime (7206fe30, closes #3556)

Features

  • http1: support configurable max_headers(num) to client and server (#3523) (b1142448)
  • http2:
    • add config for max_local_error_reset_streams in server (#3530) (d7680e30)
    • add initial_max_send_streams method to HTTP/2 client builder (#3524) (fdfa60d9)
    • add max_pending_accept_reset_streams(num) back to HTTP/2 server builder (#3507 (a9fa893f)

Breaking Changes

... (truncated)

Commits
  • c78379e v1.3.1
  • 3705a7e Revert "fix(client): send content-length even with no body"
  • d53305a v1.3.0
  • dc27043 feat(ext): implement From ReasonPhrase for Bytes
  • 6aee2e6 feat(service): expose Service and HttpService trait unconditionally
  • 172fdfa fix(client): send content-length even with no body
  • b79be91 fix(server): avoid unwrapping for the Future impl of HTTP/1 `UpgradeableCon...
  • 203d1b0 fix(http2): max_header_list_size(num) defaults to 16kb
  • 1c5b1b8 feat(client): add max_header_list_size(num) to http2::Builder.
  • df33d4d refactor(h1): use UninitSlice::as_uninit_slice_mut() instead of cast (#3618)
  • Additional commits viewable in compare view

Updates metrics-exporter-prometheus from 0.13.1 to 0.14.0

Commits
  • dc2620b chore: Release
  • 4b9f72b chore: Release
  • 016f00b chore: Release
  • 1bf58a0 missed a spot
  • 102b7d4 update release.toml
  • cc174d0 Update base64 requirement from 0.21.0 to 0.22.0 (#458)
  • 3e886cf update changelogs, make ignored test work, fix docs.rs cfg flag rendering
  • 5603f6d link directly to rust-telemetry-workshop repo
  • 54939fa update README with community integrations/learning resources
  • 3c71988 feat: add capability to purge old histogram data (#460)
  • Additional commits viewable in compare view

Updates log from 0.4.20 to 0.4.21

Changelog

Sourced from log's changelog.

[0.4.21] - 2024-02-27

What's Changed

New Contributors

Bumps the prod group with 39 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.1` | `4.5.4` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.34` | `0.4.38` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.3` | `2.2.6` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.200` |
| [toml](https://github.com/toml-rs/toml) | `0.8.10` | `0.8.12` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.8.1` | `1.10.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.36.0` | `1.37.0` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.14` | `0.1.15` |
| [pin-project](https://github.com/taiki-e/pin-project) | `1.1.4` | `1.1.5` |
| [color-eyre](https://github.com/eyre-rs/eyre) | `0.6.2` | `0.6.3` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.59` |
| [metrics](https://github.com/metrics-rs/metrics) | `0.22.1` | `0.22.3` |
| [thread-priority](https://github.com/iddm/thread-priority) | `0.15.1` | `1.1.0` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.28` | `1.3.1` |
| [metrics-exporter-prometheus](https://github.com/metrics-rs/metrics) | `0.13.1` | `0.14.0` |
| [log](https://github.com/rust-lang/log) | `0.4.20` | `0.4.21` |
| [regex](https://github.com/rust-lang/regex) | `1.10.3` | `1.10.4` |
| [insta](https://github.com/mitsuhiko/insta) | `1.35.1` | `1.38.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.114` | `1.0.116` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.10.0` | `3.10.1` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.3` | `0.12.4` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.4.2` | `2.5.0` |
| [bs58](https://github.com/Nullus157/bs58-rs) | `0.5.0` | `0.5.1` |
| [incrementalmerkletree](https://github.com/zcash/incrementalmerkletree) | `0.5.0` | `0.5.1` |
| [primitive-types](https://github.com/paritytech/parity-common) | `0.11.1` | `0.12.2` |
| [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) | `0.26.0` | `0.29.0` |
| [orchard](https://github.com/zcash/orchard) | `0.6.0` | `0.8.0` |
| [zcash_history](https://github.com/zcash/librustzcash) | `0.3.0` | `0.4.0` |
| [zcash_primitives](https://github.com/zcash/librustzcash) | `0.13.0-rc.1` | `0.15.0` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.6.1` | `3.8.1` |
| [zcash_address](https://github.com/zcash/librustzcash) | `0.3.1` | `0.3.2` |
| [zcash_client_backend](https://github.com/zcash/librustzcash) | `0.10.0-rc.4` | `0.12.1` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.5.0` | `1.6.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.10` | `0.7.11` |
| [zcash_script](https://github.com/ZcashFoundation/zcash_script) | `0.1.14` | `0.1.16` |
| [zcash_proofs](https://github.com/zcash/librustzcash) | `0.13.0-rc.1` | `0.14.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.24` | `0.11.27` |
| [jsonrpc](https://github.com/apoelstra/rust-jsonrpc) | `0.17.0` | `0.18.0` |
| [tokio-test](https://github.com/tokio-rs/tokio) | `0.4.3` | `0.4.4` |



Updates `clap` from 4.5.1 to 4.5.4
- [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.5.1...v4.5.4)

Updates `chrono` from 0.4.34 to 0.4.38
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.34...v0.4.38)

Updates `indexmap` from 2.2.3 to 2.2.6
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.2.3...2.2.6)

Updates `serde` from 1.0.197 to 1.0.200
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.197...v1.0.200)

Updates `toml` from 0.8.10 to 0.8.12
- [Commits](toml-rs/toml@toml-v0.8.10...toml-v0.8.12)

Updates `rayon` from 1.8.1 to 1.10.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.8.1...rayon-core-v1.10.0)

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

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

Updates `pin-project` from 1.1.4 to 1.1.5
- [Release notes](https://github.com/taiki-e/pin-project/releases)
- [Changelog](https://github.com/taiki-e/pin-project/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project@v1.1.4...v1.1.5)

Updates `color-eyre` from 0.6.2 to 0.6.3
- [Commits](eyre-rs/eyre@v0.6.2...color-eyre-v0.6.3)

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

Updates `metrics` from 0.22.1 to 0.22.3
- [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml)
- [Commits](metrics-rs/metrics@metrics-v0.22.1...metrics-v0.22.3)

Updates `thread-priority` from 0.15.1 to 1.1.0
- [Commits](https://github.com/iddm/thread-priority/commits)

Updates `hyper` from 0.14.28 to 1.3.1
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.28...v1.3.1)

Updates `metrics-exporter-prometheus` from 0.13.1 to 0.14.0
- [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml)
- [Commits](metrics-rs/metrics@metrics-v0.13.1...metrics-exporter-prometheus-v0.14.0)

Updates `log` from 0.4.20 to 0.4.21
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.20...0.4.21)

Updates `regex` from 1.10.3 to 1.10.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.10.3...1.10.4)

Updates `insta` from 1.35.1 to 1.38.0
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.35.1...1.38.0)

Updates `serde_json` from 1.0.114 to 1.0.116
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.114...v1.0.116)

Updates `tempfile` from 3.10.0 to 3.10.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.10.0...v3.10.1)

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

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

Updates `bs58` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/Nullus157/bs58-rs/blob/main/CHANGELOG.md)
- [Commits](Nullus157/bs58-rs@0.5.0...0.5.1)

Updates `incrementalmerkletree` from 0.5.0 to 0.5.1
- [Commits](zcash/incrementalmerkletree@incrementalmerkletree-v0.5.0...incrementalmerkletree-v0.5.1)

Updates `primitive-types` from 0.11.1 to 0.12.2
- [Commits](https://github.com/paritytech/parity-common/commits)

Updates `secp256k1` from 0.26.0 to 0.29.0
- [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md)
- [Commits](rust-bitcoin/rust-secp256k1@secp256k1-0.26.0...secp256k1-0.29.0)

Updates `orchard` from 0.6.0 to 0.8.0
- [Changelog](https://github.com/zcash/orchard/blob/main/CHANGELOG.md)
- [Commits](zcash/orchard@0.6.0...0.8.0)

Updates `zcash_history` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/zcash/librustzcash/releases)
- [Commits](zcash/librustzcash@zcash_history-0.3.0...zcash_history-0.4.0)

Updates `zcash_primitives` from 0.13.0-rc.1 to 0.15.0
- [Release notes](https://github.com/zcash/librustzcash/releases)
- [Commits](zcash/librustzcash@zcash_primitives-0.13.0-rc.1...zcash_primitives-0.15.0)

Updates `serde_with` from 3.6.1 to 3.8.1
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.6.1...v3.8.1)

Updates `zcash_address` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/zcash/librustzcash/releases)
- [Commits](zcash/librustzcash@zcash_address-0.3.1...zcash_address-0.3.2)

Updates `zcash_client_backend` from 0.10.0-rc.4 to 0.12.1
- [Release notes](https://github.com/zcash/librustzcash/releases)
- [Commits](zcash/librustzcash@zcash_client_backend-0.10.0-rc.4...zcash_client_backend-0.12.1)

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 `tokio-util` from 0.7.10 to 0.7.11
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.10...tokio-util-0.7.11)

Updates `zcash_script` from 0.1.14 to 0.1.16
- [Release notes](https://github.com/ZcashFoundation/zcash_script/releases)
- [Changelog](https://github.com/ZcashFoundation/zcash_script/blob/master/CHANGELOG.md)
- [Commits](ZcashFoundation/zcash_script@v0.1.14...v0.1.16)

Updates `zcash_proofs` from 0.13.0-rc.1 to 0.14.0
- [Release notes](https://github.com/zcash/librustzcash/releases)
- [Commits](zcash/librustzcash@zcash_proofs-0.13.0-rc.1...zcash_proofs-0.14.0)

Updates `reqwest` from 0.11.24 to 0.11.27
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.24...v0.11.27)

Updates `jsonrpc` from 0.17.0 to 0.18.0
- [Changelog](https://github.com/apoelstra/rust-jsonrpc/blob/master/CHANGELOG.md)
- [Commits](apoelstra/rust-jsonrpc@0.17.0...0.18.0)

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

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: tokio-stream
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: pin-project
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: color-eyre
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: metrics
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: thread-priority
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: metrics-exporter-prometheus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: bitflags
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: bs58
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: incrementalmerkletree
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: primitive-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: secp256k1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: orchard
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: zcash_history
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: zcash_primitives
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: serde_with
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: zcash_address
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: zcash_client_backend
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: zcash_script
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: zcash_proofs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: jsonrpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: tokio-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the C-trivial label May 6, 2024
Copy link
Author

dependabot bot commented on behalf of github May 6, 2024

The following labels could not be found: A-rust, A-dependencies, P-Low :snowflake:.

Copy link
Author

dependabot bot commented on behalf of github May 13, 2024

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

@dependabot dependabot bot closed this May 13, 2024
@dependabot dependabot bot deleted the dependabot/cargo/prod-a79e68d44d branch May 13, 2024 08:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants