Bump the cargo group across 1 directory with 9 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(4 months ago)
(about 2 months ago)
(about 2 months ago)
dependencies rust
Bumps the cargo group with 8 updates in the / directory:
| Package | From | To |
|---|---|---|
| bytes | 1.4.0 |
1.11.1 |
| evm | 0.37.0 |
0.41.1 |
| h2 | 0.3.21 |
0.3.27 |
| keccak | 0.1.3 |
0.1.6 |
| mio | 0.8.9 |
0.8.11 |
| openssl | 0.10.57 |
0.10.68 |
| ruint | 1.7.0 |
1.9.0 |
| tokio | 1.33.0 |
1.42.1 |
Updates bytes from 1.4.0 to 1.11.1
Release notes
Sourced from bytes's releases.
Bytes v1.11.1
1.11.1 (February 3rd, 2026)
- Fix integer overflow in
BytesMut::reserveBytes v1.11.0
1.11.0 (November 14th, 2025)
- Bump MSRV to 1.57 (#788)
Fixed
- fix:
BytesMutonly reuse if src has remaining (#803)- Specialize
BytesMut::put::<Bytes>(#793)- Reserve capacity in
BytesMut::put(#794)- Change
BytesMut::remaining_mutto useisize::MAXinstead ofusize::MAX(#795)Internal changes
- Guarantee address in
slice()for empty slices. (#780)- Rename
Vtable::to_*->Vtable::into_*(#776)- Fix latest clippy warnings (#787)
- Ignore
BytesMut::freezedoctest on wasm (#790)- Move
drop_fnoffrom_ownerinto vtable (#801)Bytes v1.10.1
1.10.1 (March 5th, 2025)
Fixed
- Fix memory leak when using
to_vecwithBytes::from_owner(#773)Bytes v1.10.0
1.10.0 (February 3rd, 2025)
Added
- Add feature to support platforms without atomic CAS (#467)
try_get_*methods forBuftrait (#753)- Implement
Buf::chunks_vectoredforTake(#617)- Implement
Buf::chunks_vectoredforVecDeque<u8>(#708)Fixed
... (truncated)
Changelog
Sourced from bytes's changelog.
1.11.1 (February 3rd, 2026)
- Fix integer overflow in
BytesMut::reserve1.11.0 (November 14th, 2025)
- Bump MSRV to 1.57 (#788)
Fixed
- fix:
BytesMutonly reuse if src has remaining (#803)- Specialize
BytesMut::put::<Bytes>(#793)- Reserve capacity in
BytesMut::put(#794)- Change
BytesMut::remaining_mutto useisize::MAXinstead ofusize::MAX(#795)Internal changes
- Guarantee address in
slice()for empty slices. (#780)- Rename
Vtable::to_*->Vtable::into_*(#776)- Fix latest clippy warnings (#787)
- Ignore
BytesMut::freezedoctest on wasm (#790)- Move
drop_fnoffrom_ownerinto vtable (#801)1.10.1 (March 5th, 2025)
Fixed
- Fix memory leak when using
to_vecwithBytes::from_owner(#773)1.10.0 (February 3rd, 2025)
Added
- Add feature to support platforms without atomic CAS (#467)
try_get_*methods forBuftrait (#753)- Implement
Buf::chunks_vectoredforTake(#617)- Implement
Buf::chunks_vectoredforVecDeque<u8>(#708)Fixed
- Remove incorrect guarantee for
chunks_vectored(#754)- Ensure that tests pass under
panic=abort(#749)1.9.0 (November 27, 2024)
Added
- Add
Bytes::from_ownerto enable externally-allocated memory (#742)Documented
... (truncated)
Commits
417dccdRelease bytes v1.11.1 (#820)d0293b0Merge commit from forka7952fbchore: prepare bytes v1.11.0 (#804)60cbb77fix:BytesMutonly reuse if src has remaining (#803)7ce330fMove drop_fn of from_owner into vtable (#801)4b53a29Tweak BytesMut::remaining_mut (#795)016fdbdReserve capacity in BytesMut::put (#794)ef7f257Specialize BytesMut::put::<Bytes> (#793)8b4f54dIgnore BytesMut::freeze doctest on wasm (#790)16132adFix latest clippy warnings (#787)- Additional commits viewable in compare view
Updates evm from 0.37.0 to 0.41.1
Commits
- See full diff in compare view
Updates ethereum from 0.14.0 to 0.15.0
Commits
- See full diff in compare view
Updates h2 from 0.3.21 to 0.3.27
Release notes
Sourced from h2's releases.
v0.3.26
What's Changed
- Limit number of CONTINUATION frames for misbehaving connections.
See https://seanmonstar.com/blog/hyper-http2-continuation-flood/ for more info.
v0.3.25
What's Changed
- perf: optimize header list size calculations by
@Noah-Kennedyin hyperium/h2#750Full Changelog: https://github.com/hyperium/h2/compare/v0.3.24...v0.3.25
v0.3.24
Fixed
- Limit error resets for misbehaving connections.
v0.3.23
What's Changed
- cherry-pick fix: streams awaiting capacity lockout in hyperium/h2#734
v0.3.22
What's Changed
- Add
header_table_size(usize)option to client and server builders.- Improve throughput when vectored IO is not available.
- Update indexmap to 2.
New Contributors
@tottotomade their first contribution in hyperium/h2#714@xiaoyaweimade their first contribution in hyperium/h2#712@Protryonmade their first contribution in hyperium/h2#719@4JXmade their first contribution in hyperium/h2#638@vuittont60made their first contribution in hyperium/h2#724
Changelog
Sourced from h2's changelog.
0.3.27 (July 11, 2025)
- Fix notifying wakers when detecting local stream errors.
0.3.26 (April 3, 2024)
- Limit number of CONTINUATION frames for misbehaving connections.
0.3.25 (March 15, 2024)
- Improve performance decoding many headers.
0.3.24 (January 17, 2024)
- Limit error resets for misbehaving connections.
0.3.23 (January 10, 2024)
- Backport fix from 0.4.1 for stream capacity assignment.
0.3.22 (November 15, 2023)
- Add
header_table_size(usize)option to client and server builders.- Improve throughput when vectored IO is not available.
- Update indexmap to 2.
Commits
f6237acv0.3.27f61332erefactor: change local reset counter to use type system more3f1a8e3style: fix anonymous lifetime syntax778aa7efix: notify_recv after send_reset() in reset_on_recv_stream_err() to ensure l...be10b77ci: pin more deps for MSRV job (#817)c0d9febci: pin deps for MSRV5ccd9cflints: fix unexpected cfgs warningse6e3e9cfix: return a WriteZero error if frames cannot be written (#783)357127ev0.3.261a357aafix: limit number of CONTINUATION frames allowed- Additional commits viewable in compare view
Updates keccak from 0.1.3 to 0.1.6
Commits
a8936d9keccak v0.1.640c50c1keccak v0.1.5 (#69)2dc13bfkeccak: enable asm backend for p1600 (#68)a3a4e01Revert "Update Cargo.lock" (#67)3a9a29eUpdate Cargo.lock9e4f6bckeccak: don't testsimdfeature inminimal-versionsworkflow (#66)329d4cdReplace cross tests with MIRI (#63)48cc4acbuild(deps): bump actions/checkout from 3 to 4 (#61)651a34ekeccak: replace CI tests on MIPS with PPC32 (#62)4730c6fbenches: remove criterion deps workaround (#60)- Additional commits viewable in compare view
Updates mio from 0.8.9 to 0.8.11
Changelog
Sourced from mio's changelog.
0.8.11
- Fix receiving IOCP events after deregistering a Windows named pipe (tokio-rs/mio#1760, backport pr: tokio-rs/mio#1761).
0.8.10
Added
- Solaris support (tokio-rs/mio#1724).
Commits
Updates openssl from 0.10.57 to 0.10.68
Release notes
Sourced from openssl's releases.
openssl-v0.10.68
What's Changed
- fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.68 by
@alexin sfackler/rust-openssl#2318Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...openssl-v0.10.68
openssl-v0.10.67
What's Changed
- Added a utility function to ensure we never have an issue with 0-length slices from pointers again by
@alexin sfackler/rust-openssl#2268- Fix CI for the latest rustc by
@alexin sfackler/rust-openssl#2271- Add binding for EVP_DigestSqueeze by
@initsecretin sfackler/rust-openssl#2270- libressl 4.0: const correctness for X509_LOOKUP_METHOD by
@botovqin sfackler/rust-openssl#2276- Bump hex dev-dependency version by
@alexin sfackler/rust-openssl#2277- Raise bindgen version by
@alexin sfackler/rust-openssl#2278- Ensure Rsa::check_key doesn't leave errors on the stack by
@alexin sfackler/rust-openssl#2279- Update some docs to use the corresponds macro by
@rushilmehrain sfackler/rust-openssl#2282- Don't leave errors on the stack in
MdCtxRef::digest_verify_finalby@alexin sfackler/rust-openssl#2283- Adjustments for LibreSSL 4 by
@botovqin sfackler/rust-openssl#2287- Explicit rustfmt config by
@kornelskiin sfackler/rust-openssl#2285- add basic EVP_KDF bindings by
@reaperhulkin sfackler/rust-openssl#2289- add ossl3 thread pool bindings by
@reaperhulkin sfackler/rust-openssl#2293- add argon2id support for ossl 3.2+ by
@reaperhulkin sfackler/rust-openssl#2290- fix 3.2.0 thread support and simplify by
@reaperhulkin sfackler/rust-openssl#2294- add libctx arg to argon2id by
@reaperhulkin sfackler/rust-openssl#2295- support using threads in argon2id by
@reaperhulkin sfackler/rust-openssl#2296- Ensure beginning and end of the error output is readable by
@kornelskiin sfackler/rust-openssl#2284- Test against 3.4.0-alpha1 by
@sfacklerin sfackler/rust-openssl#2302- Resolve clippy warnings from nightly by
@alexin sfackler/rust-openssl#2310- fixes #2311 -- silencer resolver warnings by
@alexin sfackler/rust-openssl#2312- Bump to 3.4.0-beta1 by
@sfacklerin sfackler/rust-openssl#2313- LibreSSL 4.0.0 by
@botovqin sfackler/rust-openssl#2315- Release openssl v0.10.67 and openssl-sys v0.9.104 by
@alexin sfackler/rust-openssl#2316New Contributors
@initsecretmade their first contribution in sfackler/rust-openssl#2270@rushilmehramade their first contribution in sfackler/rust-openssl#2282@kornelskimade their first contribution in sfackler/rust-openssl#2285Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.67
openssl-v0.10.66
What's Changed
- Fixed invariant violation in
MemBio::get_bufwith empty results by@alexin sfackler/rust-openssl#2266- Release openssl v0.10.66 by
@alexin sfackler/rust-openssl#2267Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...openssl-v0.10.66
openssl-v0.10.65
... (truncated)
Commits
be8dcfdMerge pull request #2318 from alex/msrv-fix065cc77fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.687b3ec80Merge pull request #2316 from alex/bump-for-releaseb510e8cRelease openssl v0.10.67 and openssl-sys v0.9.104ee3b024Merge pull request #2315 from botovq/libressl-4.0.0c4dabc2CI: Update LibreSSL CIf9027b7LibreSSL 4.0.0 is released & stable1b51ba5Merge pull request #2313 from sfackler/sfackler-patch-1de8a97cBump to 3.4.0-beta13930464Merge pull request #2312 from sfackler/alex-patch-1- Additional commits viewable in compare view
Updates ruint from 1.7.0 to 1.9.0
Release notes
Sourced from ruint's releases.
v1.9.0
What's Changed
- Fix some typos by
@striezelin recmo/uint#235- chore: add prestwich to code owners by
@prestwichin recmo/uint#237- Fix issue #230 by
@recmoin recmo/uint#234- Bump fastrlp from 0.3.0 to 0.3.1 by
@dependabotin recmo/uint#239- fix incorrect wrapping_mul doc by
@DaniPopesin recmo/uint#218- Bump serde from 1.0.160 to 1.0.163 by
@dependabotin recmo/uint#242- Replace unmaintained actions-rs/* actions in CI workflows by
@striezelin recmo/uint#236- feat: make serde::Deserialize impl more permissive by
@DaniPopesin recmo/uint#246- feature: minimal human-readable serialization of uints by
@prestwichin recmo/uint#243- fix: prevent overflowing instantiation in from_base_be by
@prestwichin recmo/uint#249- fix:
from_base_beoverflow by@DaniPopesin recmo/uint#253- fix:
from_base_leby@DaniPopesin recmo/uint#255- chore: extract inline benches to a separate directory by
@DaniPopesin recmo/uint#262- feat: merge alloy-rs/ruint (ruint2), take 2 by
@DaniPopesin recmo/uint#264- chore(meta): add MSRV policy, remove Cargo.lock by
@DaniPopesin recmo/uint#265- feat: ark version differentiation by
@DaniPopesin recmo/uint#266- feature: ark version differentiation by
@prestwichin recmo/uint#241- fix: circular dep in ruint by
@gakonstin recmo/uint#268- feat: implement TryFrom by
@DaniPopesin recmo/uint#269- fix: ruint-macro doctests by
@DaniPopesin recmo/uint#271- feat: add
Uint::byteby@DaniPopesin recmo/uint#270- chore: release 1.9.0 by
@DaniPopesin recmo/uint#272New Contributors
@striezelmade their first contribution in recmo/uint#235@prestwichmade their first contribution in recmo/uint#237@dependabotmade their first contribution in recmo/uint#239@DaniPopesmade their first contribution in recmo/uint#218@gakonstmade their first contribution in recmo/uint#268Full Changelog: https://github.com/recmo/uint/compare/v1.8.0...v1.9.0
Changelog
Sourced from ruint's changelog.
[1.9.0] - 2023-07-25
Added
- Introduce
ark-ff-04feature flag for conversion toark-ff@0.4types- Support for
alloy-rlp- MSRV (Minimum Supported Rust Version) is now set at 1.65.0, from previously undefined
- Implement
TryFrom<bool>forUint- New method:
byteChanged
- Make
serde::Deserializeimpl more permissive- Use Ethereum
Quantityencoding for serde serialization when human-readable- Fix error in
from_base_bethat allowed instantiation of overflowingUint- Updated
fastrlpto0.3,pyo3to0.19, andsqlx-coreto0.7- Improved
fastrlpperfomance- Improved
proptestperformance- Made
supportmodule and its modules public- Made more
algorithmfunctions public- Constified
as_le_sliceandas_le_bytesRemoved
- Automatic detection of nightly features. Enable them instead with the
nightlycargo feature- Dependency on
derive_moreFixed
from_base_leimplementation by reversing the input iterator[1.8.0] — 2023-04-19
Added
- Support
bn-rs,serdeanduint!forBitsFixed
- Serde human readable now encodes the empty bitstring as
0x0and rejects zero prefixes.
Commits
4b04138Merge pull request #272 from DaniPopes/release-1-9-04d989b8chore: release 1.9.0e4a7270Merge pull request #270 from DaniPopes/byte-fn8d6ea93Merge branch 'main' into byte-fnc8a021ffeat: addUint::byte1519f44Merge pull request #271 from DaniPopes/fix-doctests8679e17Merge branch 'main' into fix-doctests36480e3Merge pull request #269 from DaniPopes/from-boold109f37fix: ruint-macro doctestsaf00163feat: implement TryFrom<bool>- Additional commits viewable in compare view
Updates tokio from 1.33.0 to 1.42.1
Release notes
Sourced from tokio's releases.
Tokio v1.42.1
This release fixes a soundness issue in the broadcast channel. The channel accepts values that are
Sendbut!Sync. Previously, the channel calledclone()on these values without synchronizing. This release fixes the channel by synchronizing calls to.clone()(Thanks Austin Bonander for finding and reporting the issue).Fixed
- sync: synchronize
clone()call in broadcast channel (#7232)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->ptrroundtrip in RegistrationSet (#6929)- runtime: do not defer
yield_nowinsideblock_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
Instantdocs (#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
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
netrequirement fornet::UdpSocketin docs (#6938)- net: fix typo in
TcpStreaminternal comment (#6944)#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944
... (truncated)
Commits
f7fb0bdchore: prepare Tokio v1.42.19faea74Merge 'tokio-1.38.x' into 'tokio.1.42.x'aa303bcchore: prepare Tokio v1.38.2 release7b6ccb5chore: backport CI fixes4b174cesync: fix cloning value when receiving from broadcast channelbb9d570chore: prepare Tokio v1.42.0 (#7005)af9c683tests: fix typo in build test instructions (#7004)4bc5a1aci: allow Unicode-3.0 license for unicode-ident (#7006)f8948earuntime: do not deferyield_nowinsideblock_in_place(#6999)bce9780time: usearray::from_fninstead of manually creating array (#7000)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
You can disable automated security fix PRs for this repo from the Security Alerts page.
Package Dependencies
Technical Details
| ID: | 15298558 |
| UUID: | 3968233199 |
| Node ID: | PR_kwDOKu-T5M7FJkkC |
| Host: | GitHub |
| Repository: | 0xferit/fe |