Skip to content

deps: bump the rust-dependencies group with 4 updates#12

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rust-dependencies-42fd856b24
Open

deps: bump the rust-dependencies group with 4 updates#12
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rust-dependencies-42fd856b24

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 23, 2026

Updates the requirements on toml, quick-xml, hcl-rs and reqwest to permit the latest version.
Updates toml to 1.1.2+spec-1.1.0

Commits

Updates quick-xml to 0.39.2

Release notes

Sourced from quick-xml's releases.

v0.39.2 - Fix regression and read_text_into

What's Changed

New Features

  • #483: Implement read_text_into() and read_text_into_async().

Bug Fixes

  • #939: Fix parsing error of the tag from buffered reader, when the first byte < is the last in the BufRead internal buffer. This is the regression from #936.

#483: tafia/quick-xml#483 #936: tafia/quick-xml#936 #939: tafia/quick-xml#939

Full Changelog: tafia/quick-xml@v0.39.1...v0.39.2

Changelog

Sourced from quick-xml's changelog.

0.39.2 -- 2026-02-20

New Features

  • #483: Implement read_text_into() and read_text_into_async().

Bug Fixes

  • #939: Fix parsing error of the tag from buffered reader, when the first byte < is the last in the BufRead internal buffer. This is the regression from #936.

#483: tafia/quick-xml#483 #936: tafia/quick-xml#936 #939: tafia/quick-xml#939

0.39.1 -- 2026-02-15

New Features

  • #598: Add method NamespaceResolver::set_level which may be helpful in some circumstances.

Bug Fixes

  • #597: Fix incorrect processing of namespace scopes in NsReader::read_to_end NsReader::read_to_end_into, NsReader::read_to_end_into_async and NsReader::read_text. The scope started by a start element was not ended after that call.
  • #936: Fix incorrect result of .read_text() when it is called after reading Text or GeneralRef event.

#597: tafia/quick-xml#597 #598: tafia/quick-xml#598 #936: tafia/quick-xml#936

0.39.0 -- 2026-01-11

Added a way to configure Writer. Now all configuration is contained in the writer::Config struct and can be applied at once. When serde-types feature is enabled, configuration is serializable.

New Features

  • #846: Add methods config() and config_mut() to inspect and change the writer configuration.
  • #846: Add ability to write space before /> in self-closed tags for maximum compatibility with XHTML.
  • #846: Add method empty_element_handling() as a more powerful alternative to expand_empty_elements() in Serializer.
  • #929: Allow to pass list of field names to impl_deserialize_for_internally_tagged_enum! macro which is required if you enum variants contains $value fields.

Bug Fixes

... (truncated)

Commits
  • 5611c89 Release 0.39.2
  • b8eba9a Merge pull request #941 from Mingun/full-cover
  • f8e8857 Implement read_text_into and read_text_into_async
  • 489dc17 Place ; to the buffer when read general entity references
  • 9a7e8f5 Place > to the buffer when read elements, processing instructions and XML d...
  • c34af48 Place > to the buffer when read comment, CDATA or DOCTYPE
  • 241f01e Return only index from BangType::parse (renamed to feed) like in other parsers
  • e3230c2 Append +1 outside of BangType, in read_bang_element, like read_with do
  • 623c92c Rewrite read_bang_element with the same style as read_with, read_ref an...
  • e06f70a Merge pull request #940 from Mingun/fix-939
  • Additional commits viewable in compare view

Updates hcl-rs to 0.19.7

Release notes

Sourced from hcl-rs's releases.

hcl-rs-v0.19.7

Other

  • updated the following local packages: hcl-edit
Commits
  • 0d5b010 chore(hcl2json): release v0.1.17 (#531)
  • d4c0a32 fix(deps): update rust crate winnow to v1 (#530)
  • f2c72da chore(deps): update rust crate clap to v4.6.0 (#529)
  • 79168d0 chore(deps): update rust crate assert_cmd to v2.2.0 (#528)
  • 0c28586 chore(deps): update rust crate winnow to v0.7.15 (#527)
  • 5d774ff chore(deps): pin dtolnay/rust-toolchain action to 29eef33 (#525)
  • ed399c2 chore(deps): update rust crate itoa to v1.0.18 (#526)
  • b8438c8 chore(deps): update renovatebot/github-action action to v46.1.6
  • 74d896a chore(deps): update actions/cache action to v5.0.4
  • d23ad7d chore(hcl2json): release v0.1.16 (#522)
  • Additional commits viewable in compare view

Updates reqwest to 0.12.28

Release notes

Sourced from reqwest's releases.

v0.12.28

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.27...v0.12.28

Changelog

Sourced from reqwest's changelog.

v0.12.28

  • Fix compiling on Windows if TLS and SOCKS features are not enabled.

v0.12.27

  • Add ClientBuilder::windows_named_pipe(name) option that will force all requests over that Windows Named Piper.

v0.12.26

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

v0.12.25

  • Add Error::is_upgrade() to determine if the error was from an HTTP upgrade.
  • Fix sending Proxy-Authorization if only username is configured.
  • Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP.
  • Refactor internal decompression handling to use tower-http.

v0.12.24

  • Refactor cookie handling to an internal middleware.
  • Refactor internal random generator.
  • Refactor base64 encoding to reduce a copy.
  • Documentation updates.

v0.12.23

  • Add ClientBuilder::unix_socket(path) option that will force all requests over that Unix Domain Socket.
  • Add ClientBuilder::retry(policy) and reqwest::retry::Builder to configure automatic retries.
  • Add ClientBuilder::dns_resolver2() with more ergonomic argument bounds, allowing more resolver implementations.
  • Add http3_* options to blocking::ClientBuilder.
  • Fix default TCP timeout values to enabled and faster.
  • Fix SOCKS proxies to default to port 1080
  • (wasm) Add cache methods to RequestBuilder.

v0.12.22

  • Fix socks proxies when resolving IPv6 destinations.

v0.12.21

  • Fix socks proxy to use socks4a:// instead of socks4h://.
  • Fix Error::is_timeout() to check for hyper and IO timeouts too.
  • Fix request Error to again include URLs when possible.
  • Fix socks connect error to include more context.
  • (wasm) implement Default for Body.

v0.12.20

... (truncated)

Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Updates the requirements on [toml](https://github.com/toml-rs/toml), [quick-xml](https://github.com/tafia/quick-xml), [hcl-rs](https://github.com/martinohmann/hcl-rs) and [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version.

Updates `toml` to 1.1.2+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.8.0...toml-v1.1.2)

Updates `quick-xml` to 0.39.2
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.37.0...v0.39.2)

Updates `hcl-rs` to 0.19.7
- [Release notes](https://github.com/martinohmann/hcl-rs/releases)
- [Commits](martinohmann/hcl-rs@hcl-rs-v0.18.0...hcl-rs-v0.19.7)

Updates `reqwest` to 0.12.28
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.0...v0.12.28)

---
updated-dependencies:
- dependency-name: toml
  dependency-version: 1.1.2+spec-1.1.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: quick-xml
  dependency-version: 0.39.2
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: hcl-rs
  dependency-version: 0.19.7
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: reqwest
  dependency-version: 0.12.28
  dependency-type: direct:production
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Apr 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants