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 minor-and-patch-cargo-updates group across 1 directory with 18 updates #3037

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

Bumps the minor-and-patch-cargo-updates group with 17 updates in the / directory:

Package From To
serde 1.0.213 1.0.215
tokio 1.41.0 1.41.1
tempfile 3.13.0 3.14.0
ark-std 0.4.0 0.5.0
ark-mnt4-753 0.4.0 0.5.0
ark-mnt6-753 0.4.0 0.5.0
ark-serialize 0.4.2 0.5.0
pprof 0.13.0 0.14.0
syn 2.0.85 2.0.87
url 2.5.2 2.5.3
console-subscriber 0.4.0 0.4.1
hyper-util 0.1.9 0.1.10
anyhow 1.0.91 1.0.93
ark-groth16 0.4.0 0.5.0
ark-crypto-primitives 0.4.0 0.5.0
ark-relations 0.4.0 0.5.1
ark-poly 0.4.2 0.5.0

Updates serde from 1.0.213 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates tokio from 1.41.0 to 1.41.1

Release notes

Sourced from tokio's releases.

Tokio v1.41.1

1.41.1 (Nov 7th, 2024)

Fixed

  • metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • net: display net requirement for net::UdpSocket in docs (#6938)
  • net: fix typo in TcpStream internal comment (#6944)

#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944

Commits
  • bb7ca75 chore: prepare Tokio v1.41.1 (#6959)
  • 4a34b77 metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • 8897885 docs: fix mismatched backticks in CONTRIBUTING.md (#6951)
  • 0dbdd19 ci: update cargo-check-external-types to 0.1.13 (#6949)
  • 94e55c0 net: fix typo in TcpStream internal comment (#6944)
  • 4468f27 metrics: fixed flaky worker_steal_count test (#6932)
  • 070a825 metrics: removed race condition from global_queue_depth_multi_thread test (#6...
  • 946401c net: display net requirement for net::UdpSocket in docs (#6938)
  • 0c01fd2 ci: use patched version of cargo-check-external-types to fix CI failure (#6937)
  • ebe2416 ci: use cargo deny (#6931)
  • See full diff in compare view

Updates tempfile from 3.13.0 to 3.14.0

Changelog

Sourced from tempfile's changelog.

3.14.0

  • Make the wasip2 target work (requires tempfile's "nightly" feature to be enabled). #305.
  • Allow older windows-sys versions #304.
Commits

Updates ark-std from 0.4.0 to 0.5.0

Changelog

Sourced from ark-std's changelog.

Pending

  • #47 Fix incorrect use of atomic variable in src/perf_trace.rs

Breaking changes

Features

Improvements

Bug fixes

Commits

Updates ark-mnt4-753 from 0.4.0 to 0.5.0

Changelog

Sourced from ark-mnt4-753's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation

... (truncated)

Commits

Updates ark-mnt6-753 from 0.4.0 to 0.5.0

Changelog

Sourced from ark-mnt6-753's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation

... (truncated)

Commits

Updates ark-serialize from 0.4.2 to 0.5.0

Changelog

Sourced from ark-serialize's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation
Commits

Updates pprof from 0.13.0 to 0.14.0

Changelog

Sourced from pprof's changelog.

[0.14.0] - 2023-11-08

Fixed

  • Fix the alignment of the collector and validate function (#255)

Changed

  • Bump the MSRV to 1.66.0 (#255)
Commits

Updates syn from 2.0.85 to 2.0.87

Release notes

Sourced from syn's releases.

2.0.87

2.0.86

  • Support peeking the end of a parse stream (#1689)
  • Allow parse_quote! to produce Vec<Attribute> (#1775)
Commits
  • a777cff Release 2.0.87
  • 1f103d4 Merge pull request #1779 from dtolnay/scan
  • 0986a66 Ignore enum_glob_use pedantic clippy lint
  • ca97c7d Translate expr scanner to table driven
  • 8039cb3 Test that every expr can be scanned
  • 0132c44 Make scan_expr compilable from integration test
  • 7c102c3 Extract non-full expr scanner to module
  • ceaf4d6 Merge pull request #1778 from dtolnay/exprpeek
  • a890e9d Expose can_begin_expr as Expr::peek
  • 12f068c Merge pull request #1777 from dtolnay/anygroup
  • Additional commits viewable in compare view

Updates url from 2.5.2 to 2.5.3

Release notes

Sourced from url's releases.

v2.5.3

What's Changed

New Contributors

Full Changelog: servo/rust-url@v2.5.2...v2.5.3

Commits

Updates console-subscriber from 0.4.0 to 0.4.1

Release notes

Sourced from console-subscriber's releases.

console-subscriber-v0.4.1

Added

Commits
  • 2dd6a0d chore: release console-api-v0.8.1, console-subscriber-v0.4.1, tokio-console-v...
  • eff20bd chore: update tokio-console screenshots for v0.1.13 (#591)
  • f4ee0df chore: update dependencies (#590)
  • ae17230 feat(console): add large future lints (#587)
  • d2a9441 chore(deps): bump tonic from 0.12.0 to 0.12.3 (#588)
  • e00097b chore(deps-dev): bump vite from 5.1.7 to 5.4.8 in /console-subscriber/example...
  • cbe5993 chore(deps): bump rollup in /console-subscriber/examples/grpc_web/app (#585)
  • f8e1bee fix(console): correct the grammar issue (#579)
  • See full diff in compare view

Updates hyper-util from 0.1.9 to 0.1.10

Release notes

Sourced from hyper-util's releases.

v0.1.10

What's Changed

  • Add http2_max_header_list_size(num) option to legacy client builder.
  • Add set_tcp_user_timeout(dur) option to legacy HttpConnector.

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.9...v0.1.10

Changelog

Sourced from hyper-util's changelog.

0.1.10 (2024-10-28)

  • Add http2_max_header_list_size(num) option to legacy client builder.
  • Add set_tcp_user_timeout(dur) option to legacy HttpConnector.
Commits
  • a636037 v0.1.10
  • 05b13f4 chore: Fix test warning (#155)
  • 30f38c8 feat(client): Expose http2::builder::max_header_list_size in the client bui...
  • aa90ce5 refactor: allow resolve span to be disabled (#153)
  • 4dda024 feat(client): Add a new config to set TCP_USER_TIMEOUT (#152)
  • See full diff in compare view

Updates serde_derive from 1.0.213 to 1.0.215

Release notes

Sourced from serde_derive's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates anyhow from 1.0.91 to 1.0.93

Release notes

Sourced from anyhow's releases.

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)
Commits
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • fd03a8e Release 1.0.92
  • a16252b Merge pull request #390 from dtolnay/rawaddr
  • fcf2ef8 Compile &raw test on Rust 1.82+ only
  • 1e7e9fe Parse raw address expression syntax
  • 7d1a8f9 Add test of raw addr expression syntax
  • See full diff in compare view

Updates ark-groth16 from 0.4.0 to 0.5.0

Commits
  • 9ba21ce bump version numbers
  • 0762551 Merge branch 'master' into release-0.5.0
  • 16ac1dd Update README.md (#64)
  • 5aef8a9 bump alpha version
  • 5272c93 Circom witness generation is different than arkworks; cannot skip witness ele...
  • 7e6e572 circom witness generation is different than ours
  • 202feaa feat: add bn254 prove_and_verify test (#57)
  • 8a6b7bd update deps
  • 8e5c347 Adds Absorb and AbsorbGadget impl for Groth Verification Key & Var (#53)
  • 596d91f Update FixedBaseMSM to match algebra (#55)
  • Additional commits viewable in compare view

Updates ark-crypto-primitives from 0.4.0 to 0.5.0

Changelog

Sourced from ark-crypto-primitives's changelog.

CHANGELOG

Pending

  • #120 Add input size check to bowe_hopwood::CRHGadget::evaluate.

Breaking changes

Features

  • #107 Impl CanonicalSerialize and CanonicalDeserialize for ark_crypto_primitives::crh::pedersen::Parameters

Improvements

Bugfixes

Commits

@dependabot dependabot bot added dependency rust Pull requests that update Rust code labels Nov 11, 2024
@dependabot dependabot bot requested a review from jsdanielh November 11, 2024 22:59
@dependabot dependabot bot force-pushed the dependabot/cargo/minor-and-patch-cargo-updates-6ff67f76fe branch 3 times, most recently from 9d88227 to 22ff25e Compare November 13, 2024 00:51
@jsdanielh
Copy link
Member

jsdanielh commented Nov 13, 2024

Ignoring ark dependencies since they will be updated in a separate PR.

@dependabot dependabot bot force-pushed the dependabot/cargo/minor-and-patch-cargo-updates-6ff67f76fe branch from 22ff25e to b943821 Compare November 13, 2024 12:56
…rectory with 18 updates

Bumps the minor-and-patch-cargo-updates group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.213` | `1.0.215` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.0` | `1.41.1` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.13.0` | `3.14.0` |
| [ark-std](https://github.com/arkworks-rs/std) | `0.4.0` | `0.5.0` |
| [ark-mnt4-753](https://github.com/arkworks-rs/algebra) | `0.4.0` | `0.5.0` |
| [ark-mnt6-753](https://github.com/arkworks-rs/algebra) | `0.4.0` | `0.5.0` |
| [ark-serialize](https://github.com/arkworks-rs/algebra) | `0.4.2` | `0.5.0` |
| [pprof](https://github.com/tikv/pprof-rs) | `0.13.0` | `0.14.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.85` | `2.0.87` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.3` |
| [console-subscriber](https://github.com/tokio-rs/console) | `0.4.0` | `0.4.1` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.9` | `0.1.10` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.91` | `1.0.93` |
| [ark-groth16](https://github.com/arkworks-rs/groth16) | `0.4.0` | `0.5.0` |
| [ark-crypto-primitives](https://github.com/arkworks-rs/crypto-primitives) | `0.4.0` | `0.5.0` |
| [ark-relations](https://github.com/arkworks-rs/snark) | `0.4.0` | `0.5.1` |
| [ark-poly](https://github.com/arkworks-rs/algebra) | `0.4.2` | `0.5.0` |



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

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

Updates `tempfile` from 3.13.0 to 3.14.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.13.0...v3.14.0)

Updates `ark-std` from 0.4.0 to 0.5.0
- [Changelog](https://github.com/arkworks-rs/std/blob/master/CHANGELOG.md)
- [Commits](arkworks-rs/std@v0.4.0...v0.5.0)

Updates `ark-mnt4-753` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.0...v0.5.0)

Updates `ark-mnt6-753` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.0...v0.5.0)

Updates `ark-serialize` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.2...v0.5.0)

Updates `pprof` from 0.13.0 to 0.14.0
- [Changelog](https://github.com/tikv/pprof-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tikv/pprof-rs/commits)

Updates `syn` from 2.0.85 to 2.0.87
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.85...2.0.87)

Updates `url` from 2.5.2 to 2.5.3
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.2...v2.5.3)

Updates `console-subscriber` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/tokio-rs/console/releases)
- [Changelog](https://github.com/tokio-rs/console/blob/main/release-plz.toml)
- [Commits](tokio-rs/console@console-subscriber-v0.4.0...console-subscriber-v0.4.1)

Updates `hyper-util` from 0.1.9 to 0.1.10
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.9...v0.1.10)

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

Updates `anyhow` from 1.0.91 to 1.0.93
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.91...1.0.93)

Updates `ark-groth16` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/groth16/releases)
- [Changelog](https://github.com/arkworks-rs/groth16/blob/master/CHANGELOG.md)
- [Commits](arkworks-rs/groth16@v0.4.0...v0.5.0)

Updates `ark-crypto-primitives` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/crypto-primitives/releases)
- [Changelog](https://github.com/arkworks-rs/crypto-primitives/blob/main/CHANGELOG.md)
- [Commits](arkworks-rs/crypto-primitives@v0.4.0...v0.5.0)

Updates `ark-relations` from 0.4.0 to 0.5.1
- [Release notes](https://github.com/arkworks-rs/snark/releases)
- [Changelog](https://github.com/arkworks-rs/snark/blob/master/CHANGELOG.md)
- [Commits](https://github.com/arkworks-rs/snark/commits)

Updates `ark-poly` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.2...v0.5.0)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-std
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-mnt4-753
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-mnt6-753
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-serialize
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: pprof
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: console-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: hyper-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: serde_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-groth16
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-crypto-primitives
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-relations
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
- dependency-name: ark-poly
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-cargo-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/minor-and-patch-cargo-updates-6ff67f76fe branch from b943821 to 24b75ee Compare November 13, 2024 15:57
@jsdanielh
Copy link
Member

@dependabot ignore ark-std

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-std again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-mnt4-753

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-mnt4-753 again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-mnt6-753

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-mnt6-753 again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-serialize

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-serialize again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-groth16

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-groth16 again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-crypto-primitives

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-crypto-primitives again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-relations

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-relations again, unless you unignore it.

@jsdanielh
Copy link
Member

@dependabot ignore ark-poly

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

OK, I won't notify you about ark-poly again, unless you unignore it.

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@jsdanielh
Copy link
Member

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

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

@dependabot dependabot bot closed this Nov 13, 2024
@dependabot dependabot bot deleted the dependabot/cargo/minor-and-patch-cargo-updates-6ff67f76fe branch November 13, 2024 23:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant