fix(deps): update rust - #4
Open
bootc-bot[bot] wants to merge 1 commit into
Open
Conversation
bootc-bot
Bot
force-pushed
the
bootc-renovate/rust
branch
from
September 10, 2026 00:59
0b189e9 to
876127e
Compare
Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com>
bootc-bot
Bot
force-pushed
the
bootc-renovate/rust
branch
from
September 10, 2026 21:23
876127e to
df8993c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.6.5→4.6.64.6.8→4.6.90.3.0→0.3.37.1.1→8.0.01.1.9→1.1.100.3.33→0.3.340.3.33→0.3.340.1.4→0.1.51.11.0→1.11.12.14.0→2.14.20.4.33→0.4.341.1.0→1.1.14.3.0→4.4.02.0.19→2.0.201.1.4+spec-1.1.0→1.1.61.24.0→1.26.18.0.5→8.0.60.13.1→0.14.0Release Notes
clap-rs/clap (clap)
v4.6.6Compare Source
Features
Command::get_overridden_usagenukesor/comfy-table (comfy-table)
v8.0.0Compare Source
Breaking Changes
The following types and functions have been removed:
TableComponentenummodifiersmodule andTable::apply_modifierhave been removed.Table::current_style_as_presetTable::set_styleTable::styleTable::remove_styleTable::load_presetThe positional preset string format has been replaced with the new
TableStyle,LineStyleandContentLineStyletypes.The old approach of having "stringified" presets was too finicky and also implicitly bound to the order of variants in the old
TableComponentenum.It was just not a good design.
The new design, in comparison, has a nice and (hopefully) intuitive API to define a style.
On top of that, all functions on
TableStyleareconst, so custom styles can still be declared as constants:The new API looks as follows:
comfy_table::presets::*are nowTableStyleconstants.Table::load_style(style)has been added to load a preset or custom style.Table::style()andTable::style_mut()to get a handle to the style used by the table.The
muthandle can be used to change the style.TableStyle::with_rounded_corners/TableStyle::with_solid_inner_borders.TableStyle,LineStyleandContentLineStyleare public:The default truncation indicator is now
…instead of....This should make it more obvious that there's more text and consumes less visual space.
Fix
Various performance improvements that reduce table formatting time quite a bit:
17µs -> 11µs253µs -> 172µs20.8ms -> 6.15msMost of these improvements boil down to:
Fixed a non-critical bug that resulted in less-than optimal layouting when UTF-8 characters were involved.
No longer panic when rendering a
Tablethat contains a row withRow::max_height(0).Don't print multi-width truncation indicators, if they would be longer than the column.
rust-lang/flate2-rs (flate2)
v1.1.10Compare Source
What's Changed
Crcstruct by @MikkelPaulson in #540README.mdin a private module by @bushrat011899 in #562no_stdsupport using nightlyalloc_ioby @bushrat011899 in #559get_mut()documentation to make clear how 'inner` can be used by @Byron in #558New Contributors
Full Changelog: rust-lang/flate2-rs@1.1.9...1.1.10
rust-lang/futures-rs (futures-util)
v0.3.34Compare Source
synto 3. (#3028)hyperium/http-body (http-body-util)
v0.1.5Compare Source
hyperium/hyper (hyper)
v1.11.1Compare Source
Bug Fixes
\n\r\nas a head terminator in the partial-read fast path (#4147) (3534d75c, closes #4145)indexmap-rs/indexmap (indexmap)
v2.14.2Compare Source
const CAPcould shadow the same name in the caller's namespace.
constinitialization of emptyindexmap_with_default!andindexset_with_default!. The hasher may also be omitted if it's inferrable.v2.14.1Compare Source
Equivalentisn't needed (Q = K).expect) clippy lints.rust-lang/log (log)
v0.4.34Compare Source
kornelski/mandown (mandown)
v1.1.1Compare Source
owo-colors/owo-colors (owo-colors)
v4.4.0Compare Source
Changed
dtolnay/thiserror (thiserror)
v2.0.20Compare Source
toml-rs/toml (toml)
v1.1.6Compare Source
v1.1.5Compare Source
uuid-rs/uuid (uuid)
v1.26.1Compare Source
What's Changed
New Contributors
Full Changelog: uuid-rs/uuid@v1.26.0...v1.26.1
v1.26.0Compare Source
What's Changed
Full Changelog: uuid-rs/uuid@1.25.0...v1.26.0
v1.25.0Compare Source
What's Changed
New Contributors
Full Changelog: uuid-rs/uuid@v1.24.1...1.25.0
v1.24.1Compare Source
What's Changed
New Contributors
Full Changelog: uuid-rs/uuid@v1.24.0...v1.24.1
harryfei/which-rs (which)
v8.0.6Compare Source
Thanks @RSS1102 for your contribution to which!
gyscos/zstd-rs (zstd)
v0.14.0Compare Source
Breaking
with_prepared_dictionary()constructors now borrow the dictionary for as long as the stream (#372). The dictionary is registered with the underlying context by pointer, so dropping it early left the stream with a dangling pointer - reachable from safe code.Fixed
Decoder::finish()now consumes the rest of the frame, so the reader is handed back positioned just after it (#251, #255). zstd can produce the last of the decoded data before it has read the frame epilogue, so a caller who stops reading once it has the bytes it wanted used to get its reader back pointing inside the frame. Note thatfinish()may now read from the underlying reader;Decoder::finish_frame()is the same operation with the error surfaced.Read::read()with an empty buffer returnsOk(0)instead of an error (#318).New
Decoder::finish_frame(), to consume the rest of the current frame explicitly.bulk::Compressor::set_pledged_src_size()(#320).with_contextconstructors (#338).cmakeandvendoredfeatures, forwarded tozstd-safe.Configuration
📅 Schedule: (in timezone UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate CLI.