fix(deps): update rust crate rust_xlsxwriter to 0.93 - #16
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/rust_xlsxwriter-0.x
branch
2 times, most recently
from
November 20, 2025 00:56
f5492f0 to
676f6e3
Compare
renovate
Bot
force-pushed
the
renovate/rust_xlsxwriter-0.x
branch
from
January 6, 2026 21:57
676f6e3 to
b934dee
Compare
renovate
Bot
force-pushed
the
renovate/rust_xlsxwriter-0.x
branch
2 times, most recently
from
January 27, 2026 18:10
292dd0e to
d0aab7c
Compare
renovate
Bot
force-pushed
the
renovate/rust_xlsxwriter-0.x
branch
from
February 2, 2026 17:52
d0aab7c to
e03d7f4
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:
0.91→0.93Release Notes
jmcnamara/rust_xlsxwriter (rust_xlsxwriter)
v0.93.0Compare Source
Added
Added support for autofitting formatted numbers and dates like
$1,000,000.00or
January 1 2026. This requires the optionalssfmtcrate and is enabledby the
enhanced_autofitfeature flag. For cells with number formats thewidth of the formatted number is now taken into account, like this example
where the number 1 is formatted in different ways:
The previous behaviour, and the behaviour without the
enhanced_autofitfeature enabled, was to produce a file that looked like this:
Added the
Worksheet::set_autofit_max_row()method to limit the number ofrows processed when applying
Worksheet::autofit(). This is a performanceworkaround for autofitting large datasets where a value of 200-500 rows can be
used to autofit the data in the visible row range of most users.
Added the
Worksheet::set_autofit_max_width()method to enable an upperbound column width when autofitting long strings. This replaces the deprecated
Worksheet::autofit_to_max_width()method.Deprecated
Worksheet::autofit_to_max_width()method. It is replacedwith
Worksheet::set_autofit_max_width()and [Worksheet::autofit()]v0.92.4Compare Source
Fixed
Fixed issue where XML escape-like strings, such as
_x1234were being doublyescaped, inadvertently.
Issue #166.
Fixed/added escaping of invalid
\uFFFFand\uFFFEcharacters.Issue #168.
Added
zipdependency to v7.0.v0.92.3Compare Source
Fixed
Fixed floating-point precision issue in [
Worksheet::insert_image_fit_to_cell_centered()].Issue #165.
v0.92.2Compare Source
Added
.thmxand.xlsxfiles as wellas the previously supported
theme.xmlfile. See [Workbook::use_custom_theme()].v0.92.1Compare Source
Added
Updated
zipdependency to v6.0. This requires a MSRV of 1.83.0.Updated optional
polarsdependency to v0.52.v0.92.0Compare Source
Added
This release adds several features related to setting themes and default fonts.
Added support for setting a custom theme using a
theme.xmlfile extracted from an XLSX file.See
Workbook::use_custom_theme().Added support for setting the Excel 2023/Aptos default theme. See
Workbook::use_excel_2023_theme().Added support for setting a custom default format and font. This allows to
user to set a font other than "Calibri 11" as the default. This also takes the
associated change in row height and column width into account to ensure that
worksheet objects such as images and charts are positioned correctly.
See
Workbook::set_default_format().Added option to set a "Calibri 11" font that isn't part of the theme.
Request #158.
Fixed
Fixed issue where setting a custom row height in character units wasn't
rounded to the nearest pixel.
Request #158.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.